Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
samijaber committed Sep 26, 2024
1 parent 1b4b243 commit b65d528
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions packages/docs/src/components/router-head.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,11 @@ export const RouterHead = component$(() => {
const head = useDocumentHead();
const loc = useLocation();

const canonicalURL = new URL(loc.url.pathname + loc.url.search + loc.url.hash, 'https://mitosis.builder.io');

const canonicalURL = new URL(
loc.url.pathname + loc.url.search + loc.url.hash,
'https://mitosis.builder.io',
);

return (
<>
<title>{head.title}</title>
Expand Down

0 comments on commit b65d528

Please sign in to comment.