Skip to content

Commit 7b035e9

Browse files
committed
Fix:format
1 parent cd27a09 commit 7b035e9

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

libs/@hashintel/ds-components/src/components/Checkbox/checkbox.figma.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,5 @@ figma.connect(
3737
label={props.label}
3838
/>
3939
),
40-
}
40+
},
4141
);

libs/@hashintel/ds-components/src/components/Checkbox/checkbox.stories.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,8 @@ export const Interactive: Story = {
116116
{checked === "indeterminate"
117117
? "Indeterminate"
118118
: checked
119-
? "Checked"
120-
: "Unchecked"}
119+
? "Checked"
120+
: "Unchecked"}
121121
</strong>
122122
</div>
123123
<div style={{ display: "flex", gap: "8px" }}>

libs/@hashintel/ds-components/src/components/SegmentedControl/segmented-control.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ export const Interactive: Story = {
128128

129129
render: (args) => {
130130
const [selectedValue, setSelectedValue] = useState(
131-
args.defaultValue ?? "option1"
131+
args.defaultValue ?? "option1",
132132
);
133133

134134
return (

libs/@hashintel/ds-components/vite.config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,15 @@ export default defineConfig({
4040
button: path.resolve(__dirname, "src/components/Button/button.tsx"),
4141
checkbox: path.resolve(
4242
__dirname,
43-
"src/components/Checkbox/checkbox.tsx"
43+
"src/components/Checkbox/checkbox.tsx",
4444
),
4545
"refractive-pane": path.resolve(
4646
__dirname,
47-
"src/components/RefractivePane/refractive-pane.tsx"
47+
"src/components/RefractivePane/refractive-pane.tsx",
4848
),
4949
"segmented-control": path.resolve(
5050
__dirname,
51-
"src/components/SegmentedControl/segmented-control.tsx"
51+
"src/components/SegmentedControl/segmented-control.tsx",
5252
),
5353
slider: path.resolve(__dirname, "src/components/Slider/slider.tsx"),
5454
switch: path.resolve(__dirname, "src/components/Switch/switch.tsx"),

0 commit comments

Comments
 (0)