Skip to content

Commit 6693382

Browse files
remove unused url param
1 parent effcb7c commit 6693382

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

src/routes/og/Thumbnail.svelte

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22
type Props = {
33
title: string;
44
description?: string;
5-
secondaryIconUrl?: string;
65
};
76
8-
let { title, description, secondaryIconUrl }: Props = $props();
7+
let { title, description }: Props = $props();
98
</script>
109

1110
<div class="flex h-full w-full border-b border-orange-600" style:border-bottom-width="32px">
@@ -27,10 +26,6 @@
2726
<span class="text-orange-600" style:font-family="SansFontSemibold">Changelog</span>
2827
</span>
2928
</div>
30-
{#if secondaryIconUrl}
31-
{@const src = secondaryIconUrl}
32-
<img {src} alt="Secondary icon" class="ml-auto w-16" />
33-
{/if}
3429
<div class="my-auto flex flex-col justify-center">
3530
<p class="text-7xl" style:font-family="DisplayFont">{title}</p>
3631
{#if description}

0 commit comments

Comments
 (0)