Skip to content

Commit 7102033

Browse files
committed
style
1 parent 4eb2408 commit 7102033

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/components/Welcome.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { cn } from '../lib/utils.js'
44
import styles from '../styles/Welcome.module.css'
55

66
interface WelcomePopupProps {
7-
onClose: () => void,
7+
onClose: () => void
88
}
99

1010
/**

src/hooks/useConfig.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ export interface Config {
1717
routes?: {
1818
getSourceRouteUrl?: (params: { sourceId: string }) => string
1919
getCellRouteUrl?: (params: { sourceId: string, col: number, row: number }) => string
20-
},
20+
}
2121
slidePanel?: {
2222
minWidth?: number
2323
defaultWidth?: number
24-
},
24+
}
2525
}
2626

2727
const ConfigContext = createContext<Config>({})

0 commit comments

Comments
 (0)