Skip to content

Commit

Permalink
refactor(envited.ascs.digital): Breadcrumbs typing
Browse files Browse the repository at this point in the history
Signed-off-by: Jeroen Branje <[email protected]>
  • Loading branch information
jeroenbranje committed Mar 11, 2024
1 parent eade0b4 commit 6c06310
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export const Breadcrumbs: FC = () => {
</div>
</li>
{pages.map(slug => {
const page = prop(slug)(BREADCRUMBS_MAP) as { name: string, href: string, current?: boolean }
const page = prop(slug)(BREADCRUMBS_MAP) as { name: string; href: string; current?: boolean }
return (
<li key={prop('name')(page)}>
<div className="flex items-center">
Expand Down

0 comments on commit 6c06310

Please sign in to comment.