refactor(confirm): use import { m } instead of import * as m in ConfirmDialog

Consistent with every other component in the project.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Marcel
2026-04-12 14:35:42 +02:00
parent 84378f11b4
commit 0b95c90e7a

View File

@@ -1,6 +1,6 @@
<script lang="ts"> <script lang="ts">
import { getConfirmService } from '$lib/services/confirm.svelte.js'; import { getConfirmService } from '$lib/services/confirm.svelte.js';
import * as m from '$lib/paraglide/messages.js'; import { m } from '$lib/paraglide/messages.js';
// Context must already be set by the parent layout via provideConfirmService(). // Context must already be set by the parent layout via provideConfirmService().
const service = getConfirmService(); const service = getConfirmService();