diff --git a/src/app.d.ts b/src/app.d.ts
index ffec69b..d56ae6a 100644
--- a/src/app.d.ts
+++ b/src/app.d.ts
@@ -1,6 +1,6 @@
// See https://kit.svelte.dev/docs/types#app
// for information about these interfaces
-import MaintenanceProfile from "$entities/MaintenanceProfile";
+import TaggingProfile from "$entities/TaggingProfile";
import type TagGroup from "$entities/TagGroup";
declare global {
@@ -37,7 +37,7 @@ declare global {
);
interface EntityNamesMap {
- profiles: MaintenanceProfile;
+ profiles: TaggingProfile;
groups: TagGroup;
}
diff --git a/src/components/features/ProfileView.svelte b/src/components/features/ProfileView.svelte
index d39f965..ed97361 100644
--- a/src/components/features/ProfileView.svelte
+++ b/src/components/features/ProfileView.svelte
@@ -1,8 +1,8 @@