diff --git a/src/routes/(app)/(protected)/profile/+page.svelte b/src/routes/(app)/(protected)/profile/+page.svelte index 6db738a..c86e693 100644 --- a/src/routes/(app)/(protected)/profile/+page.svelte +++ b/src/routes/(app)/(protected)/profile/+page.svelte @@ -6,6 +6,7 @@ import { Label } from '$components/ui/label'; import { Input } from '$components/ui/input'; import { Button } from '$components/ui/button'; + import * as Alert from "$lib/components/ui/alert"; export let data; const profileSchema = userSchema.pick({ @@ -24,7 +25,7 @@