Fix mobile overlay and deps per #43
Test and Lint / backend-test (pull_request) Successful in 1m22s
continuous-integration/drone/pr Build is failing
Test and Lint / frontend-test (pull_request) Failing after 1m25s

This commit is contained in:
2025-10-29 11:23:59 +01:00
parent b76e45cb54
commit 0e9f400723
13 changed files with 1449 additions and 686 deletions
+2 -2
View File
@@ -25,7 +25,7 @@ export const MaintenanceMode: React.FC = () => {
try {
const response = await api.get('/public/settings');
return response.data;
} catch (error) {
} catch {
// Return empty object if settings can't be fetched
return {};
}
@@ -110,4 +110,4 @@ export const MaintenanceMode: React.FC = () => {
)}
</div>
);
};
};