diff --git a/src/App.vue b/src/App.vue index 23b3a32..c123fcd 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,7 +1,7 @@ diff --git a/src/views/GeneralView.vue b/src/views/GeneralView.vue index 655583f..73a80db 100644 --- a/src/views/GeneralView.vue +++ b/src/views/GeneralView.vue @@ -16,7 +16,7 @@ import { kinks, } from "@/sebin"; import { dateFormat, getAge, toImperial, toLbs } from "@/helpers"; -import { isWarnKey, nsfwKey, showModalKey } from "@/keys"; +import { nsfwKey, showModalKey } from "@/keys"; import type { Kink } from "@/interfaces"; import DataTable from "@/components/DataTable.vue"; import QuickFacts from "@/components/QuickFacts.vue"; @@ -51,7 +51,6 @@ const kinksData = kinks.map((kink: Kink): string[] => { }); const isNsfw = inject(nsfwKey, false); -const isWarn = inject(isWarnKey, false); const showModal = inject(showModalKey, Function); diff --git a/src/views/HomeView.vue b/src/views/HomeView.vue index 98c2566..345d189 100644 --- a/src/views/HomeView.vue +++ b/src/views/HomeView.vue @@ -1,13 +1,12 @@