Skip to content

Commit

Permalink
datasets added
Browse files Browse the repository at this point in the history
  • Loading branch information
shahrukh802 committed Jun 24, 2024
1 parent c353e8a commit aee0a19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/app/settings/datasets/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ import { DatasetCardLoading } from "@/components/Skeletons";
import { useGetDatasetDetails } from "@/hooks/useDatasets";

const DatasetDetailsPage = () => {
const parmas: { id: string } = useParams();
const params: { id: string } = useParams();

const {
data: datasetDetailsResponse,
isLoading: isDatasetDetailsResponseLoading,
} = useGetDatasetDetails(parmas.id);
} = useGetDatasetDetails(params.id);

const dataframe = datasetDetailsResponse?.data?.dataset;

Expand Down

0 comments on commit aee0a19

Please sign in to comment.