Skip to content

Commit 7a0c8de

Browse files
authored
Fix 2 incorrect MD frontmatter entries (#2174)
* Fix host names missing when name is null, fall back to username * Fix 2 incorrect MD frontmatter entries: linkedin key in show 610, url array in show 616
1 parent 53bced4 commit 7a0c8de

3 files changed

Lines changed: 3 additions & 7 deletions

File tree

shows/610 - Supper.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ url: https://traffic.megaphone.fm/FSI7028552678.mp3
66
guest:
77
name: Zach Lloyd
88
twitter: zachlloydtweets
9-
linkedin: zachlloyd
109
github: zachlloyd
1110
url: https://www.warp.dev/
1211
---

shows/616 - adam CSS.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,8 @@ guest:
77
name: Adam Argyle
88
github: argyleink
99
twitter: argyleink
10-
url:
11-
- https://nerdy.dev/
12-
- https://gradient.style/
13-
social:
14-
- https://bsky.app/profile/nerdy.dev
10+
url: https://nerdy.dev/
11+
social: https://bsky.app/profile/nerdy.dev
1512
---
1613

1714
In this supper club episode of Syntax, Wes and Scott talk with Adam Argyle about a ton of new CSS features that have arrived or are coming soon, as well as his new site Gradient.style.

src/lib/HostsAndGuests.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
{#each hosts as host}
3232
<Host
3333
host={{
34-
name: host.name || '',
34+
name: host.name || host.username || '',
3535
github: host.username,
3636
twitter: host.twitter
3737
}}

0 commit comments

Comments
 (0)