Skip to content

Commit

Permalink
Updating import
Browse files Browse the repository at this point in the history
  • Loading branch information
galvana committed Sep 15, 2023
1 parent 8a82753 commit e401afc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions clients/admin-ui/src/pages/dataset/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import NextLink from "next/link";

import Layout from "~/features/common/Layout";
import { useGetAllFilteredDatasetsQuery } from "~/features/dataset/dataset.slice";
import DatasetsTable from "~/features/dataset/DatasetTable";
import DatasetTable from "~/features/dataset/DatasetTable";

const DataSets: NextPage = () => {
const { isLoading } = useGetAllFilteredDatasetsQuery({
Expand All @@ -33,7 +33,7 @@ const DataSets: NextPage = () => {
</BreadcrumbItem>
</Breadcrumb>
</Box>
<Box mb={4}>{isLoading ? <Spinner /> : <DatasetsTable />}</Box>
<Box mb={4}>{isLoading ? <Spinner /> : <DatasetTable />}</Box>
<Box>
<Button
size="sm"
Expand Down

0 comments on commit e401afc

Please sign in to comment.