chore (client): restrict possible page values

This commit is contained in:
naskya 2024-06-22 23:38:25 +09:00
parent 5a2d1c2010
commit 024eab99f1
No known key found for this signature in database
GPG key ID: 712D413B3A9FED5C

View file

@ -49,7 +49,7 @@ const XGallery = defineAsyncComponent(() => import("./gallery.vue"));
const props = withDefaults(
defineProps<{
acct: string;
page?: string;
page?: "home" | "reactions" | "media" | "clips" | "pages" | "gallery";
}>(),
{
page: "home",