Skip to content

Commit 44d07b9

Browse files
committed
Fix styling
1 parent 5b2d54a commit 44d07b9

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

client/src/components/ToolsTab.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ const ToolsTab = ({
179179
onCheckedChange={(checked: boolean) =>
180180
setParams({
181181
...params,
182-
[key]: checked
182+
[key]: checked,
183183
})
184184
}
185185
/>

client/src/components/ui/checkbox.tsx

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
"use client"
1+
"use client";
22

3-
import * as React from "react"
4-
import * as CheckboxPrimitive from "@radix-ui/react-checkbox"
5-
import { Check } from "lucide-react"
3+
import * as React from "react";
4+
import * as CheckboxPrimitive from "@radix-ui/react-checkbox";
5+
import { Check } from "lucide-react";
66

7-
import { cn } from "@/lib/utils"
7+
import { cn } from "@/lib/utils";
88

99
const Checkbox = React.forwardRef<
1010
React.ElementRef<typeof CheckboxPrimitive.Root>,
@@ -14,7 +14,7 @@ const Checkbox = React.forwardRef<
1414
ref={ref}
1515
className={cn(
1616
"peer h-4 w-4 shrink-0 rounded-sm border border-primary ring-offset-background focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 data-[state=checked]:bg-primary data-[state=checked]:text-primary-foreground",
17-
className
17+
className,
1818
)}
1919
{...props}
2020
>
@@ -24,7 +24,7 @@ const Checkbox = React.forwardRef<
2424
<Check className="h-4 w-4" />
2525
</CheckboxPrimitive.Indicator>
2626
</CheckboxPrimitive.Root>
27-
))
28-
Checkbox.displayName = CheckboxPrimitive.Root.displayName
27+
));
28+
Checkbox.displayName = CheckboxPrimitive.Root.displayName;
2929

30-
export { Checkbox }
30+
export { Checkbox };

0 commit comments

Comments
 (0)