Login-colour-fix-v2 (#5418)

This commit is contained in:
ConnorYoh
2026-01-09 10:30:34 +00:00
committed by GitHub
parent b4dd7afe03
commit 8394b71014
4 changed files with 18 additions and 9 deletions
-2
View File
@@ -23,11 +23,9 @@ export function useFooterInfo() {
const fetchFooterInfo = async () => {
try {
setLoading(true);
console.log('[useFooterInfo] Fetching footer info from /api/v1/ui-data/footer-info...');
const response = await apiClient.get<FooterInfo>('/api/v1/ui-data/footer-info', {
suppressErrorToast: true,
} as any);
console.log('[useFooterInfo] Footer info received:', response.data);
setFooterInfo(response.data);
setError(null);
} catch (err) {