Skip to content

Commit

Permalink
chore: [email protected] migration
Browse files Browse the repository at this point in the history
  • Loading branch information
jdanil committed Oct 22, 2024
1 parent d475366 commit dcb9819
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions applications/app/src/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,18 +38,18 @@ export const Header: FunctionComponent = () => {
<header className={headerStyle}>
<nav className={navStyle}>
{/* eslint-disable-next-line react/forbid-component-props -- allow component props for Link which renders an anchor */}
<Link className={logoStyle} to={path.home} unstable_viewTransition>
<Link className={logoStyle} to={path.home} viewTransition>
<HomeIcon aria-label={i18n("Home")} />
</Link>
<ul className={listStyle}>
<li className={listItemStyle}>
<Link to={path.content} unstable_viewTransition>
<Link to={path.content} viewTransition>
{i18n("content")}
</Link>
</li>
{useFlag("dev-tools") ? (
<li className={listItemStyle}>
<Link to={path.flags} unstable_viewTransition>
<Link to={path.flags} viewTransition>
{i18n("flags")}
</Link>
</li>
Expand Down

0 comments on commit dcb9819

Please sign in to comment.