Skip to content

Commit

Permalink
fix: build (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
echarles authored Nov 29, 2024
1 parent 2e7ee3a commit 2de3775
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/DatalayerApp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import { useState, useEffect } from 'react';
import { createRoot } from 'react-dom/client';
import { MemoryRouter } from 'react-router-dom';
import { IOIndex, LoginFormCLI, BenchmarksExample, KernelsExample } from '@datalayer/ui';
import { IOIndex, LoginCLI, BenchmarksExample, KernelsExample } from '@datalayer/ui';

import '../style/index.css';

Expand Down Expand Up @@ -58,7 +58,7 @@ export const DatalayerApp = (): JSX.Element => {
)}
{ view === 'login' && (
<MemoryRouter initialEntries={["/datalayer/login/cli"]}>
<LoginFormCLI baseRoute='datalayer/login' />
<LoginCLI baseRoute='datalayer/login' />
</MemoryRouter>
)}
</>
Expand Down

0 comments on commit 2de3775

Please sign in to comment.