From e4c6af5690259cb7ee3da35cdd0e08d4859e897e Mon Sep 17 00:00:00 2001 From: Adam French Date: Wed, 10 Dec 2025 04:49:51 +0000 Subject: [PATCH] bugfix --- nginx/vue/src/components/admin/CreatePost.vue | 3 +-- nginx/vue/src/components/admin/CreateUser.vue | 3 +-- nginx/vue/src/components/admin/Login.vue | 3 +-- nginx/vue/src/stores/auth.js | 2 +- 4 files changed, 4 insertions(+), 7 deletions(-) diff --git a/nginx/vue/src/components/admin/CreatePost.vue b/nginx/vue/src/components/admin/CreatePost.vue index cd7a952..b9170a5 100644 --- a/nginx/vue/src/components/admin/CreatePost.vue +++ b/nginx/vue/src/components/admin/CreatePost.vue @@ -4,7 +4,6 @@ import axios from "axios"; import { useAuthStore } from "@/stores/auth"; const auth = useAuthStore(); -const loggedIn = auth.loggedIn; const title = ref(""); const content = ref(""); @@ -24,7 +23,7 @@ async function post() {