Fix typing
All checks were successful
release-image / release-image (push) Successful in 10m29s

This commit is contained in:
Logan Cusano
2025-05-26 04:23:44 -04:00
parent 42ac4adadf
commit a79444b55a

View File

@@ -58,7 +58,7 @@ const IndividualClientPage: React.FC<IndividualClientPageProps> = ({ clientId, t
setCurrentClientDiscordStatus('Failed to fetch status');
setCurrentClientOp25Status('Failed to fetch status');
}
} catch (err) {
} catch (err: any) {
if (err.message === 'Unauthorized: Session expired or invalid token.') {
setLoading(false); // already handled by authAwareFetch
return;