🧼 Updates password input component

This commit is contained in:
Rune Harlyk
2024-08-19 21:09:57 +02:00
committed by Rune Harlyk
parent a0c58841d7
commit d4c40a2a53
7 changed files with 28 additions and 65 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
import { onMount, onDestroy } from 'svelte';
import { slide } from 'svelte/transition';
import { cubicOut } from 'svelte/easing';
import InputPassword from '$lib/components/InputPassword.svelte';
import InputPassword from '$lib/components/input/InputPassword.svelte';
import SettingsCard from '$lib/components/SettingsCard.svelte';
import { user } from '$lib/stores/user';
import { page } from '$app/stores';
+1 -1
View File
@@ -10,7 +10,7 @@
import { notifications } from '$lib/components/toasts/notifications';
import DragDropList, { VerticalDropZone, reorder, type DropEvent } from 'svelte-dnd-list';
import SettingsCard from '$lib/components/SettingsCard.svelte';
import InputPassword from '$lib/components/InputPassword.svelte';
import InputPassword from '$lib/components/input/InputPassword.svelte';
import ConfirmDialog from '$lib/components/ConfirmDialog.svelte';
import ScanNetworks from './Scan.svelte';
import Spinner from '$lib/components/Spinner.svelte';