We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4eb2408 commit 7102033Copy full SHA for 7102033
src/components/Welcome.tsx
@@ -4,7 +4,7 @@ import { cn } from '../lib/utils.js'
4
import styles from '../styles/Welcome.module.css'
5
6
interface WelcomePopupProps {
7
- onClose: () => void,
+ onClose: () => void
8
}
9
10
/**
src/hooks/useConfig.ts
@@ -17,11 +17,11 @@ export interface Config {
17
routes?: {
18
getSourceRouteUrl?: (params: { sourceId: string }) => string
19
getCellRouteUrl?: (params: { sourceId: string, col: number, row: number }) => string
20
- },
+ }
21
slidePanel?: {
22
minWidth?: number
23
defaultWidth?: number
24
25
26
27
const ConfigContext = createContext<Config>({})
0 commit comments