From 7a6cffa74c6376bdad6d80f0738e8e35d37b7ae6 Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Mon, 20 Apr 2026 22:34:24 +0000 Subject: [PATCH] Cleanup unused variables --- ts/client.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/ts/client.ts b/ts/client.ts index 5e6a11f9..ee3f305a 100644 --- a/ts/client.ts +++ b/ts/client.ts @@ -1,11 +1,8 @@ // src/api/axios.ts import axios, { AxiosInstance, AxiosRequestConfig } from "axios"; -import router from "@/router"; class ApiClient { private client: AxiosInstance; - private _hasSession: boolean = false; - private _isAuthenticated: boolean = false; constructor() { this.client = axios.create({ @@ -33,7 +30,6 @@ class ApiClient { (response) => response, (error) => { if (error.response?.status === 401) { - this._isAuthenticated = false; // Could emit event or redirect here } return Promise.reject(error);