From 894162a669cef9fefea89e786f40128b8c6e621c Mon Sep 17 00:00:00 2001 From: Michael Genson <71845777+michael-genson@users.noreply.github.com> Date: Mon, 25 Aug 2025 12:28:43 -0500 Subject: [PATCH] fix: Remove Frontend Timeout (#6033) --- frontend/plugins/axios.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/plugins/axios.ts b/frontend/plugins/axios.ts index 80befbb9c..cc232c833 100644 --- a/frontend/plugins/axios.ts +++ b/frontend/plugins/axios.ts @@ -4,8 +4,8 @@ import { alert } from "~/composables/use-toast"; export default defineNuxtPlugin(() => { const tokenName = useRuntimeConfig().public.AUTH_TOKEN; const axiosInstance = axios.create({ + // timeout removed to allow backend to handle timeouts baseURL: "/", // api calls already pass with /api - timeout: 10000, headers: { Authorization: "Bearer " + useCookie(tokenName).value, },