Skip to content

Commit

Permalink
fix: retour review
Browse files Browse the repository at this point in the history
  • Loading branch information
sylviamoreno committed Jun 26, 2024
1 parent 19287bc commit 625ea71
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import React, { ReactNode } from 'react';

import { Icon } from '~/client/components/ui/Icon/Icon';

Check failure on line 3 in src/client/components/layouts/Header/Navigation/NavigationStructure.tsx

View workflow job for this annotation

GitHub Actions / build (20)

'Icon' is defined but never used
import { LinkIcon } from '~/client/components/ui/Link/Link';

import styles from './NavigationStructure.module.scss';

Check failure on line 6 in src/client/components/layouts/Header/Navigation/NavigationStructure.tsx

View workflow job for this annotation

GitHub Actions / build (20)

'styles' is defined but never used

Expand All @@ -25,7 +26,7 @@ const offresNav = (): NavigationItemWithChildren => ({
children: [
{ label: 'Emplois', link: '/emplois' },
...(process.env.NEXT_PUBLIC_STAGES_SECONDE_RECHERCHE_FEATURE === '1' && process.env.NEXT_PUBLIC_STAGES_SECONDE_URL ? [{
label: <>Stage de 2de GT <Icon className={styles.externalIcon} name="external-redirection" aria-label="Nouvel onglet" /></>,
label: <>Stage de 2de GT <LinkIcon /></>,
link: process.env.NEXT_PUBLIC_STAGES_SECONDE_URL,
}] : []),
{ label: 'Stages d’études', link: '/stages' },
Expand Down

0 comments on commit 625ea71

Please sign in to comment.