Skip to content

Commit

Permalink
chore: prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
lucaburgio committed Feb 20, 2024
1 parent d0a566a commit f9d372b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion iconoir.com/components/SEO.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ export function SEO({ title, description }: SEOProps) {
const pageDescription = description;

const pathWithoutQuery = asPath.split(/[?#]/)[0];
const canonicalUrl = `https://iconoir.com${pathWithoutQuery !== '/' ? pathWithoutQuery : ''}`;
const canonicalUrl = `https://iconoir.com${
pathWithoutQuery !== '/' ? pathWithoutQuery : ''
}`;

return (
<Head>
Expand Down

0 comments on commit f9d372b

Please sign in to comment.