Skip to content
Snippets Groups Projects
Commit 9334c06c authored by Stein Elgethun's avatar Stein Elgethun
Browse files

Remove username from invite page

Will be shown in header, so not needed on page as well

Issue: GREG-75
parent 62e775fa
No related branches found
No related tags found
1 merge request!117Greg 75 invitation page
Pipeline #97861 passed
import { useTranslation } from 'react-i18next'
import Page from 'components/page'
import { useUserContext } from 'contexts'
import { styled } from '@mui/material/styles'
......@@ -13,14 +12,12 @@ const FlexDiv = styled('div')(() => ({
}))
function Invite() {
const { user } = useUserContext()
const { t } = useTranslation(['invite'])
return (
<Page>
<h1>{t('header')}</h1>
<p>
{user.first_name} {user.last_name}
{t('description')}
</p>
<FlexDiv>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment