diff --git a/frontend/src/lib/document/DocumentMetadataDrawer.svelte b/frontend/src/lib/document/DocumentMetadataDrawer.svelte index a3df7ef3..d6895629 100644 --- a/frontend/src/lib/document/DocumentMetadataDrawer.svelte +++ b/frontend/src/lib/document/DocumentMetadataDrawer.svelte @@ -3,7 +3,7 @@ import { m } from '$lib/paraglide/messages.js'; import { formatDate } from '$lib/utils/date'; import { formatDocumentStatus } from '$lib/document/documentStatusLabel'; import { getInitials, personAvatarColor } from '$lib/utils/personFormat'; -import RelationshipPill from '$lib/components/RelationshipPill.svelte'; +import RelationshipPill from '$lib/person/RelationshipPill.svelte'; type Person = { id: string; firstName?: string | null; lastName: string; displayName: string }; type Tag = { id: string; name: string }; diff --git a/frontend/src/lib/document/DocumentTopBar.svelte b/frontend/src/lib/document/DocumentTopBar.svelte index dc3c99e0..6a694021 100644 --- a/frontend/src/lib/document/DocumentTopBar.svelte +++ b/frontend/src/lib/document/DocumentTopBar.svelte @@ -3,7 +3,7 @@ import { m } from '$lib/paraglide/messages.js'; import { slide } from 'svelte/transition'; import { formatDate } from '$lib/utils/date'; import { clickOutside } from '$lib/actions/clickOutside'; -import PersonChipRow from '$lib/components/PersonChipRow.svelte'; +import PersonChipRow from '$lib/person/PersonChipRow.svelte'; import OverflowPillButton from '$lib/components/OverflowPillButton.svelte'; import DocumentMetadataDrawer from './DocumentMetadataDrawer.svelte'; import BackButton from '$lib/components/BackButton.svelte'; diff --git a/frontend/src/lib/document/WhoWhenSection.svelte b/frontend/src/lib/document/WhoWhenSection.svelte index 12e47cd2..ce562014 100644 --- a/frontend/src/lib/document/WhoWhenSection.svelte +++ b/frontend/src/lib/document/WhoWhenSection.svelte @@ -1,7 +1,7 @@