Skip to content

Commit

Permalink
Update projects list
Browse files Browse the repository at this point in the history
  • Loading branch information
sashachabin committed Aug 26, 2024
1 parent 60eac34 commit 8b1e2f2
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions client/pages/_app.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import React, { useEffect } from 'react';
import React from 'react';
import { Provider } from 'react-redux';
import Head from 'next/head';
import { useRouter } from 'next/router';
import { ALL_PROJECTS, PROJECT_TRANSPORT, ProjectsPanel, Theme } from 'ekb';
import { PRODUCTION_PROJECTS, PROJECT_TRANSPORT, ProjectsPanel, Theme } from 'ekb';

import { store } from 'state';

Expand All @@ -26,7 +25,7 @@ function App({ Component, pageProps }: AppProps<any>) {

<div data-pathname={pathname}>
<ProjectsPanel
projects={ALL_PROJECTS}
projects={[...PRODUCTION_PROJECTS, PROJECT_TRANSPORT]}
activeProjectId={PROJECT_TRANSPORT.id}
theme={Theme.LIGHT}
/>
Expand Down

0 comments on commit 8b1e2f2

Please sign in to comment.