mirror of
https://github.com/immich-app/immich.git
synced 2025-11-27 19:29:55 +09:00
chore(web): migration svelte 5 syntax (#13883)
This commit is contained in:
@@ -5,9 +5,13 @@
|
||||
|
||||
import Portal from '$lib/components/shared-components/portal/portal.svelte';
|
||||
|
||||
export let onClose: () => void;
|
||||
interface Props {
|
||||
onClose: () => void;
|
||||
}
|
||||
|
||||
let showProductActivated = false;
|
||||
let { onClose }: Props = $props();
|
||||
|
||||
let showProductActivated = $state(false);
|
||||
</script>
|
||||
|
||||
<Portal>
|
||||
|
||||
Reference in New Issue
Block a user