diff --git a/src/components/Hyperchat.svelte b/src/components/Hyperchat.svelte index abd1b71..607f4da 100644 --- a/src/components/Hyperchat.svelte +++ b/src/components/Hyperchat.svelte @@ -83,7 +83,7 @@ // }, // showtime: 5000, // }; - $: hasBanner = pinned || redirect || (summary && $showChatSummary); + $: hasBanner = pinned ?? redirect ?? (summary && $showChatSummary); let div: HTMLElement; let isAtBottom = true; let truncateInterval: number;