Skip to content

Commit f50d1f7

Browse files
committed
fix: make format command apply import sorting
1 parent 86bc5d2 commit f50d1f7

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

exporter/SynthesisFusionAddin/web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"style": "biome format",
1313
"style:fix": "biome format --fix",
1414
"preview": "vite preview",
15-
"format": "bun run style:fix; bun run lint:fix"
15+
"format": "biome check --fix"
1616
},
1717
"dependencies": {
1818
"@emotion/react": "^11.14.0",

exporter/SynthesisFusionAddin/web/src/App.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ import GeneralConfigTab from "./ui/GeneralConfigTab.tsx"
3737
import GlobalAlert from "./ui/GlobalAlert.tsx"
3838
import JointsConfigTab from "./ui/JointsConfigTab.tsx"
3939
import MaterialTaggingTab, { type TaggedBody } from "./ui/MaterialTaggingTab.tsx"
40+
4041
function TabPanel(props: { children?: React.ReactNode; value: number; index: number }) {
4142
const { children, value, index, ...other } = props
4243

exporter/SynthesisFusionAddin/web/src/ui/components/SelectButton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Button, Stack } from "@mui/material"
2-
import { Global_SetAlert } from "../../lib/GlobalUtils.tsx"
32
import type { ReactElement } from "react"
3+
import { Global_SetAlert } from "../../lib/GlobalUtils.tsx"
44

55
interface FusionSelectButtonProps<T> {
66
label: string

0 commit comments

Comments
 (0)