fix: Various lint issues (#7766)

This commit is contained in:
Michael Genson
2026-06-17 10:57:45 -05:00
committed by GitHub
parent a166f127a2
commit 4a099c168e
3 changed files with 4 additions and 4 deletions

View File

@@ -26,7 +26,7 @@ const authUser = ref<UserOut | null>(null);
const authStatus = ref<"loading" | "authenticated" | "unauthenticated">("loading");
export const useAuthBackend = function (): AuthState {
const { $appInfo, $axios } = useNuxtApp();
const { $axios } = useNuxtApp();
const router = useRouter();
const runtimeConfig = useRuntimeConfig();