merge main

This commit is contained in:
Alex Tran
2025-11-25 15:01:40 +00:00
94 changed files with 3510 additions and 1729 deletions

View File

@@ -0,0 +1,16 @@
<script lang="ts">
import { ConfirmModal } from '@immich/ui';
import { t } from 'svelte-i18n';
type Props = {
onClose: (confirmed: boolean) => void;
};
let { onClose }: Props = $props();
</script>
<ConfirmModal
confirmColor="danger"
prompt={$t('workflow_delete_prompt')}
onClose={(confirmed) => (confirmed ? onClose(true) : onClose(false))}
/>