Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
PJDeSmijter committed May 18, 2024
1 parent 50732f0 commit 38ddd70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/app/[locale]/admin/users/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ export default async function Users({ params: { locale } }: { params: { locale:
const { t, resources } = await initTranslations(locale, i18nNamespaces);

const headers = [
<React.Fragment><EmailIcon style={{ fontSize: '20px', verticalAlign: 'middle', marginBottom: '3px' }}/>{" " + t('email')}</React.Fragment>,
<React.Fragment key="email"><EmailIcon style={{ fontSize: '20px', verticalAlign: 'middle', marginBottom: '3px' }}/>{" " + t('email')}</React.Fragment>,
,
<React.Fragment><WorkIcon style={{ fontSize: '20px', verticalAlign: 'middle', marginBottom: '3px' }}/>{" " + t('role')}</React.Fragment>
<React.Fragment key="role"><WorkIcon style={{ fontSize: '20px', verticalAlign: 'middle', marginBottom: '3px' }}/>{" " + t('role')}</React.Fragment>
, ''];
const headers_backend = ['email', 'role', ''];

Expand Down

0 comments on commit 38ddd70

Please sign in to comment.