(show = true)
| 25 | const currentConnectionCtx = connectionStore.currentConnectionCtx; |
| 26 | |
| 27 | const toggleCreateConnectionModal = (show = true) => { |
| 28 | setState({ |
| 29 | ...state, |
| 30 | showCreateConnectionModal: show, |
| 31 | }); |
| 32 | setEditConnectionModalContext(undefined); |
| 33 | }; |
| 34 | |
| 35 | const handleConnectionSelect = async (connection: Connection) => { |
| 36 | const databaseList = await connectionStore.getOrFetchDatabaseList(connection); |