Skip to content

Commit

Permalink
fix(stage): bouton sur la page de confirmation
Browse files Browse the repository at this point in the history
  • Loading branch information
Naorid committed Jul 20, 2023
1 parent e7a2228 commit bc78714
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';

import { Container } from '~/client/components/layouts/Container/Container';
import { Link } from '~/client/components/ui/Link/Link';
import { LinkStyledAsButton } from '~/client/components/ui/LinkStyledAsButton/LinkStyledAsButton';
import useReferrer from '~/client/hooks/useReferrer';
import { URL_DEPOSER_OFFRE } from '~/pages/stages/deposer-offre/index.page';

Expand All @@ -14,18 +14,18 @@ export default function StageDeposerOffreFormulaireEnvoye() {
<Container className={styles.container}>
<div className={styles.texteValidation}>Cette offre est soumise à une validation avant sa mise en ligne.</div>
<div className={styles.boutonsConfirmationEnvoi}>
<Link
<LinkStyledAsButton
href={'/'}
appearance={'asPrimaryButton'}
>
Retourner à l’accueil
</Link>
<Link
</LinkStyledAsButton>
<LinkStyledAsButton
href={URL_DEPOSER_OFFRE}
appearance={'asSecondaryButton'}
>
Déposer une offre de stage
</Link>
</LinkStyledAsButton>
</div>
</Container>
);}

0 comments on commit bc78714

Please sign in to comment.