Skip to content

Commit ff17276

Browse files
committed
Update type for useDatasets hook
1 parent 1fe9e7f commit ff17276

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

useDatasets.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import useSWR from 'swr';
22
import { ddnFetcher, getAddedDeletedDatasetsQuery } from './data'
3-
import { type DatasetType } from './components/DatasetList'
3+
import { type DatasetWithSplitgraphURL } from './components/DatasetList'
44

55
interface DDNResponse {
66
success: string;
7-
rows: Array<DatasetType>;
7+
rows: Array<DatasetWithSplitgraphURL>;
88
}
99

1010
interface UseDatasetsParams {

0 commit comments

Comments
 (0)