Skip to content

Commit 38c8029

Browse files
authored
Fix guest social links hidden when Twitter is missing, fixes #2163 (#2164)
1 parent e2be144 commit 38c8029

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/routes/(site)/guest/[name_slug]/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<img src={`https://github.com/${guest.github}.png`} alt={guest.name} />
1313
<div>
1414
<h1>{guest.name}</h1>
15-
{#if guest.twitter}
15+
{#if guest.twitter || guest.github || guest.url}
1616
<div class="guest_socials">
1717
<HostSocialLink host={guest} />
1818
</div>

0 commit comments

Comments
 (0)