We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea23c73 commit c21e7e3Copy full SHA for c21e7e3
frontend/src/lib/hooks/useLocalStorage.ts
@@ -1,3 +1,4 @@
1
+/* eslint-disable no-console */
2
import { LOCAL_STORAGE_KEY_PREFIX } from 'lib/constants';
3
import {
4
useState,
frontend/src/lib/hooks/useTimezones.ts
@@ -57,6 +57,7 @@ const generateTimezones = (): Timezone[] => {
57
}
58
});
59
} catch (error) {
60
+ // eslint-disable-next-line no-console
61
console.warn(
62
'Intl.supportedValuesOf not supported, using fallback timezones'
63
);
0 commit comments