Skip to content

Commit

Permalink
fix: comment out PortalContextSelector in ProjectPortalPage component
Browse files Browse the repository at this point in the history
  • Loading branch information
Noggling committed Nov 15, 2024
1 parent 186d48c commit cb82544
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 3 additions & 4 deletions portal/project-portal-landingpage/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,9 @@ import { ProjectPortalPage } from './pages/ProjectPortalPage';
const queryClient = new QueryClient();

export const App = () => (
// <QueryClientProvider client={queryClient}>
// <ProjectPortalPage />;
// </QueryClientProvider>
<h1>Project Portal - Hello World!</h1>
<QueryClientProvider client={queryClient}>
<ProjectPortalPage />;
</QueryClientProvider>
);

export default App;
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export const ProjectPortalPage = (): JSX.Element => {
applications associated with the selected context through the menu.
</Typography>
</Styles.Section>
<PortalContextSelector />
{/* <PortalContextSelector /> */}
</Styles.ContentWrapper>
{feature?.enabled && <Allocations />}
</Styles.Content>
Expand Down

0 comments on commit cb82544

Please sign in to comment.