diff --git a/web/src/components/dialog/SmallDialog.svelte b/web/src/components/dialog/SmallDialog.svelte index c14cd102..3820c88e 100644 --- a/web/src/components/dialog/SmallDialog.svelte +++ b/web/src/components/dialog/SmallDialog.svelte @@ -4,10 +4,11 @@ import { killDialog } from "$lib/dialogs"; import type { DialogButton } from "$lib/types/dialog"; - import MeowbaltError from "$components/meowbalt/MeowbaltError.svelte"; + import Meowbalt from "$components/misc/Meowbalt.svelte"; + import type { MeowbaltEmotions } from "$lib/types/meowbalt"; export let id: string; - export let meowbalt: string = ""; + export let meowbalt: MeowbaltEmotions; export let title: string = ""; export let bodyText: string = ""; export let bodySubText: string = ""; @@ -39,16 +40,16 @@
- {#if meowbalt === "error"} + {#if meowbalt}
- +
{/if} - + {/if}