diff --git a/src/components/v-sheet/v-sheet.test.ts b/src/components/v-sheet/v-sheet.test.ts
index 9a249f749c..11d2431233 100644
--- a/src/components/v-sheet/v-sheet.test.ts
+++ b/src/components/v-sheet/v-sheet.test.ts
@@ -1,4 +1,4 @@
-import { mount, createLocalVue, Wrapper } from '@vue/test-utils';
+import { mount, createLocalVue } from '@vue/test-utils';
import VueCompositionAPI from '@vue/composition-api';
const localVue = createLocalVue();
diff --git a/src/components/v-sheet/v-sheet.vue b/src/components/v-sheet/v-sheet.vue
index 0ddfd684c5..1a4b5ac8fe 100644
--- a/src/components/v-sheet/v-sheet.vue
+++ b/src/components/v-sheet/v-sheet.vue
@@ -7,7 +7,12 @@
diff --git a/src/views/public/types.ts b/src/views/public/types.ts
deleted file mode 100644
index a66f99cd40..0000000000
--- a/src/views/public/types.ts
+++ /dev/null
@@ -1,6 +0,0 @@
-export type ProjectArt = {
- color: string;
- background_image: string | null;
- foreground_image: string | null;
- note: string | null;
-};