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:
@@ -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();
|
||||||
|
|||||||
Reference in New Issue
Block a user