Skip to content

Commit

Permalink
disable explorer until we manage to paginate the /everything call
Browse files Browse the repository at this point in the history
  • Loading branch information
northdpole committed Jan 6, 2024
1 parent c6c3fb7 commit 921665d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 9 deletions.
8 changes: 4 additions & 4 deletions application/frontend/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ const App = () => (
<filterContext.Provider value={GlobalFilterState}>
<QueryClientProvider client={queryClient}>
{/* <DataProvider> */}
<BrowserRouter>
<Toaster />
<MainContentArea />
</BrowserRouter>
<BrowserRouter>
<Toaster />
<MainContentArea />
</BrowserRouter>
{/* </DataProvider> */}
</QueryClientProvider>
</filterContext.Provider>
Expand Down
1 change: 0 additions & 1 deletion application/frontend/src/providers/DataProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,5 @@ export const useDataStore = () => {
if (!dataContext) {
throw new Error('useDataStore must be used within a DataProvider');
}

return dataContext;
};
4 changes: 0 additions & 4 deletions application/frontend/src/scaffolding/Header/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,6 @@ const getLinks = (): { to: string; name: string }[] => [
to: `/map_analysis`,
name: 'Map analysis',
},
{
to: `/explorer`,
name: 'Explorer',
},
];

export const Header = () => {
Expand Down

0 comments on commit 921665d

Please sign in to comment.