diff --git a/src/components/maintenance/ProfileView.svelte b/src/components/features/ProfileView.svelte similarity index 100% rename from src/components/maintenance/ProfileView.svelte rename to src/components/features/ProfileView.svelte diff --git a/src/routes/features/maintenance/[id]/+page.svelte b/src/routes/features/maintenance/[id]/+page.svelte index 294d229..61fc9ff 100644 --- a/src/routes/features/maintenance/[id]/+page.svelte +++ b/src/routes/features/maintenance/[id]/+page.svelte @@ -4,7 +4,7 @@ import {page} from "$app/stores"; import {goto} from "$app/navigation"; import {activeProfileStore, maintenanceProfilesStore} from "$stores/maintenance-profiles-store.js"; - import ProfileView from "$components/maintenance/ProfileView.svelte"; + import ProfileView from "$components/features/ProfileView.svelte"; import MenuCheckboxItem from "$components/ui/menu/MenuCheckboxItem.svelte"; const profileId = $page.params.id; diff --git a/src/routes/features/maintenance/import/+page.svelte b/src/routes/features/maintenance/import/+page.svelte index b9f28ee..6249efe 100644 --- a/src/routes/features/maintenance/import/+page.svelte +++ b/src/routes/features/maintenance/import/+page.svelte @@ -4,7 +4,7 @@ import FormContainer from "$components/ui/forms/FormContainer.svelte"; import MaintenanceProfile from "$entities/MaintenanceProfile.ts"; import FormControl from "$components/ui/forms/FormControl.svelte"; - import ProfileView from "$components/maintenance/ProfileView.svelte"; + import ProfileView from "$components/features/ProfileView.svelte"; import {maintenanceProfilesStore} from "$stores/maintenance-profiles-store.js"; import {goto} from "$app/navigation"; import EntitiesTransporter from "$lib/extension/EntitiesTransporter.ts";