Skip to content

Commit

Permalink
fix: broken entreprise link
Browse files Browse the repository at this point in the history
Signed-off-by: Xavier Jp <[email protected]>
  • Loading branch information
XavierJp authored Sep 19, 2024
1 parent b5d08cb commit 2d39a89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/(header-default)/personne/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ const PersonnePage = async (props: AppRouterProps) => {
<FullTable
head={['Siren', 'Détails', 'Dirigeant(s)']}
body={results.results.map((result) => [
<a href={result.chemin}>{formatIntFr(result.siren)}</a>,
<a href={`/entreprise/${result.chemin}}`>{formatIntFr(result.siren)}</a>,
<>
{result.nomComplet}
<br />
Expand Down

0 comments on commit 2d39a89

Please sign in to comment.