From f5f65fd8d1b319756f5397259bfcad9de0bfbe1d Mon Sep 17 00:00:00 2001 From: Vikhyath Mondreti Date: Fri, 27 Jun 2025 19:14:50 -0700 Subject: [PATCH] fix lint --- apps/sim/contexts/socket-context.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/sim/contexts/socket-context.tsx b/apps/sim/contexts/socket-context.tsx index eeec6b7c73..05fe41382f 100644 --- a/apps/sim/contexts/socket-context.tsx +++ b/apps/sim/contexts/socket-context.tsx @@ -199,7 +199,9 @@ export function SocketProvider({ children, user }: SocketProviderProps) { error.message?.includes('Authentication failed') || error.message?.includes('Authentication required') ) { - logger.warn('Authentication failed - this could indicate session expiry or token generation issues') + logger.warn( + 'Authentication failed - this could indicate session expiry or token generation issues' + ) // The fresh token generation on each attempt should handle most cases automatically // If this persists, user may need to refresh page or re-login }