File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ type FormValues = {
27
27
connectionString : string ;
28
28
} ;
29
29
30
- export const ConfigurationDialog = ( ) => {
30
+ export const ConnectDialog = ( ) => {
31
31
const { register, handleSubmit } = useForm < FormValues > ( ) ;
32
32
const [ isOpen , setIsOpen ] = useState ( false ) ;
33
33
const [ connectionString , setConnectionString ] = useAtom ( connectionStringAtom ) ;
Original file line number Diff line number Diff line change 7
7
} from '@/utils/atoms' ;
8
8
import { Icon } from './shared/icon' ;
9
9
import { cn } from '@/utils/cn' ;
10
- import { ConfigurationDialog } from './configure ' ;
10
+ import { ConnectDialog } from './connect ' ;
11
11
import { ThemeSelect } from './theme-select' ;
12
12
import { CommandPalette } from './command-palette' ;
13
13
@@ -83,7 +83,7 @@ export const Toolbar = () => {
83
83
</ button >
84
84
</ div >
85
85
</ div >
86
- < ConfigurationDialog />
86
+ < ConnectDialog />
87
87
</ div > { ' ' }
88
88
</ div >
89
89
) ;
You can’t perform that action at this time.
0 commit comments