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 abbf864 commit 5661f17Copy full SHA for 5661f17
binderhub/static/js/components/FaviconUpdater.jsx
@@ -3,8 +3,6 @@ import FailIcon from "../../images/favicon/fail.ico";
3
import SuccessIcon from "../../images/favicon/success.ico";
4
5
import { PROGRESS_STATES } from "./Progress.jsx";
6
-import { useEffect } from "react";
7
-import { updateFavicon } from "../src/favicon";
8
9
/**
10
* @typedef {object} FaviconUpdaterProps
binderhub/static/js/index.d.ts
@@ -0,0 +1,2 @@
1
+// Tell typescript to be quiet about .ico files we use for favicons
2
+declare module "*.ico";
tsconfig.json
@@ -1,7 +1,7 @@
{
"compilerOptions": {
"allowJs": true,
- "checkJs": false,
+ "checkJs": true,
"noEmit": false,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
0 commit comments