Skip to content
This repository has been archived by the owner on Apr 25, 2023. It is now read-only.

Commit

Permalink
fix: dataset page showing errors on page refreshing (#253)
Browse files Browse the repository at this point in the history
  • Loading branch information
nina992 authored and rot1024 committed Jun 30, 2022
1 parent e98a730 commit 3f48e9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/organisms/Settings/Project/Dataset/hooks.ts
Expand Up @@ -34,7 +34,7 @@ export default (projectId: string) => {

const { data, fetchMore, loading, networkStatus } = useDatasetsListQuery({
variables: { sceneId: sceneId ?? "", first: datasetPerPage },
skip: !projectId,
skip: !sceneId,
notifyOnNetworkStatusChange: true,
});

Expand Down

0 comments on commit 3f48e9f

Please sign in to comment.