diff --git a/pages/store/[id]/index.vue b/pages/store/[id]/index.vue
index 40b91c4..4b4ea4d 100644
--- a/pages/store/[id]/index.vue
+++ b/pages/store/[id]/index.vue
@@ -37,6 +37,18 @@
Add to Library
+
+ Open in Admin Dashboard
+
+
Available on:
import { PlusIcon } from "@heroicons/vue/20/solid";
+import { ArrowTopRightOnSquareIcon } from "@heroicons/vue/24/outline";
import { Platform, type Game, type GameVersion } from "@prisma/client";
import MarkdownIt from "markdown-it";
import LinuxLogo from "~/components/icons/LinuxLogo.vue";
@@ -126,6 +139,8 @@ import WindowsLogo from "~/components/WindowsLogo.vue";
const route = useRoute();
const gameId = route.params.id.toString();
+const user = useUser();
+
const headers = useRequestHeaders(["cookie"]);
const game = await $fetch(
`/api/v1/games/${gameId}`,