From 7ad4b1e52c7b53702d923d226f4aa516835ef149 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian=20T=C3=B6lle?= Date: Thu, 14 May 2020 12:16:11 +0200 Subject: [PATCH] fix(frontend): disable broken service-worker Login breaks because the SW somehow captures the navigation to `/api/v1/auth/spotify` and instead shows the react app. --- frontend/src/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/index.tsx b/frontend/src/index.tsx index 759ee2d..2861d30 100644 --- a/frontend/src/index.tsx +++ b/frontend/src/index.tsx @@ -16,4 +16,4 @@ ReactDOM.render( document.getElementById("root") ); -serviceWorker.register(); +serviceWorker.unregister();