From 97e93046314d6452be91d9fcec8c77a7bae7f062 Mon Sep 17 00:00:00 2001
From: Stefano Pigozzi <me@steffo.eu>
Date: Sun, 10 Oct 2021 17:10:30 +0200
Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Silence=20the=20annoying=20depen?=
 =?UTF-8?q?dency=20warning?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 frontend/src/components/routing/ResourceRouter.tsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/frontend/src/components/routing/ResourceRouter.tsx b/frontend/src/components/routing/ResourceRouter.tsx
index effab7d..dce7776 100644
--- a/frontend/src/components/routing/ResourceRouter.tsx
+++ b/frontend/src/components/routing/ResourceRouter.tsx
@@ -35,6 +35,6 @@ export function ResourceRouter<Resource>({selection, unselectedRoute, selectedRo
                 <UnselectedRoute/>
             )
         },
-        [selection, selectedRoute, unselectedRoute],
+        [selection, SelectedRoute, UnselectedRoute],
     )
 }