Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
huntabyte committed Nov 29, 2023
1 parent 702df10 commit a433366
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/metadata.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
export let title: string = siteConfig.name;
$: title = $page.data?.title ? `${$page.data.title} - ${siteConfig.name}` : siteConfig.name;
$: title = $page.data?.title
? `${$page.data.title} - ${siteConfig.name}`
: siteConfig.name;
</script>

<svelte:head>
Expand Down

0 comments on commit a433366

Please sign in to comment.