We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0246f0f commit b218df3Copy full SHA for b218df3
pages/index.tsx
@@ -1,25 +1,9 @@
1
import React from 'react';
2
3
-import { useTranslations } from 'next-intl';
4
-
5
-import { EuiPageHeader, EuiSpacer } from '@elastic/eui';
6
-import {
7
- WfoStartPage,
8
- useWfoSession,
9
-} from '@orchestrator-ui/orchestrator-ui-components';
+import { WfoStartPage } from '@orchestrator-ui/orchestrator-ui-components';
10
11
export function Index() {
12
- const { session } = useWfoSession();
13
- const t = useTranslations('main');
14
- const username = session?.user?.name || '';
15
16
- return (
17
- <>
18
- <EuiPageHeader pageTitle={`${t('welcome')} ${username}`} />
19
- <EuiSpacer />
20
- <WfoStartPage />
21
- </>
22
- );
+ return <WfoStartPage />;
23
}
24
25
export default Index;
0 commit comments