frontend for xcvr appview

this probably should make things make more sense haha

+5 -3
+5 -3
src/routes/b/[id]/+page.svelte
··· 29 29 {/if} 30 30 {#if data.ban.till} 31 31 <p> 32 - {#if data.ban.till > Date.now()} 33 - the ban will end on {dumbAbsoluteTimestamp(data.ban.till)}. 32 + {#if Date.parse(data.ban.till) > Date.now()} 33 + the ban will end on {dumbAbsoluteTimestamp( 34 + Date.parse(data.ban.till), 35 + )}. 34 36 {:else} 35 - the ban ended {smartAbsoluteTimestamp(data.ban.till)} 37 + the ban ended {smartAbsoluteTimestamp(Date.parse(data.ban.till))} 36 38 {/if} 37 39 </p> 38 40 {/if}