Clean up modals

This commit is contained in:
Jon Staab
2026-02-10 11:39:29 -08:00
parent 7566f56858
commit 72f2effda4
15 changed files with 398 additions and 323 deletions
+5 -2
View File
@@ -3,11 +3,14 @@
type Props = {
url: string
class?: string
}
const {url}: Props = $props()
const {url, ...props}: Props = $props()
const display = $derived(deriveRelayDisplay(url))
</script>
{$display}
<span class={props.class}>
{$display}
</span>