0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-04-08 03:01:32 -05:00

chore: migrate previously missed file to Svelte 5 ()

This commit is contained in:
Ben McCann 2025-03-24 16:44:05 -07:00 committed by GitHub
parent c14668bdd4
commit 91065db3ff
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -8,9 +8,13 @@
import { t } from 'svelte-i18n';
import { dialogController } from '$lib/components/shared-components/dialog/dialog';
export let stack: StackResponseDto;
export let asset: AssetResponseDto;
export let onAction: OnAction;
interface Props {
stack: StackResponseDto;
asset: AssetResponseDto;
onAction: OnAction;
}
let { stack, asset, onAction }: Props = $props();
const handleKeepThisDeleteOthers = async () => {
const isConfirmed = await dialogController.show({