Skip to content

Commit

Permalink
Fix missing explorer reveal button (#641)
Browse files Browse the repository at this point in the history
  • Loading branch information
macjuul authored Jan 7, 2025
1 parent 154a4f1 commit 526fac5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export interface ExplorerPaneProps {
export function ExplorerPane({ activeTable, onCreateRecord }: ExplorerPaneProps) {
const { addQueryTab, updateCurrentConnection } = useConfigStore.getState();
const { showContextMenu } = useContextMenu();
const explorerTableList = useConnection((c) => c?.explorerTableList ?? []);
const explorerTableList = useConnection((c) => c?.explorerTableList);
const pagination = usePagination();
const [, setActiveView] = useActiveView();

Expand Down

0 comments on commit 526fac5

Please sign in to comment.