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 668206c commit 96b8748Copy full SHA for 96b8748
frontend/src/components/Connect/Header/Header.tsx
@@ -40,10 +40,10 @@ const Header = () => {
40
>();
41
const { data: connects = [] } = useConnects(clusterName, true);
42
43
- const { table } = useTableInstance();
+ const instance = useTableInstance();
44
45
const handleExportClick = () => {
46
- exportTableCSV(table, { prefix: getCsvPrefix(currentPath) });
+ exportTableCSV(instance?.table, { prefix: getCsvPrefix(currentPath) });
47
};
48
49
return (
0 commit comments