diff --git a/src/components/Byline/Byline.svelte b/src/components/Byline/Byline.svelte index 62b1ff5d..2c534925 100644 --- a/src/components/Byline/Byline.svelte +++ b/src/components/Byline/Byline.svelte @@ -65,9 +65,9 @@ const authorSlug = slugify(author.trim(), { lower: true }); return `https://www.reuters.com/authors/${authorSlug}/`; }, - byline = null, - published = null, - updated = null, + byline, + published, + updated, }: Props = $props(); let alignmentClass = $derived(align === 'left' ? 'text-left' : 'text-center');