From d35bec31a88f4c7953630010be7d6c03d8a7030e Mon Sep 17 00:00:00 2001 From: liliana <liliana.sanfilippo@uni-bielefeld.de> Date: Thu, 25 Jul 2024 16:34:11 +0200 Subject: [PATCH] deleted unused variable --- src/App/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App/App.tsx b/src/App/App.tsx index 7fc434e4..fbbad2c8 100644 --- a/src/App/App.tsx +++ b/src/App/App.tsx @@ -54,7 +54,7 @@ const App = () => { {/* Header and PageContent */} <Routes> - {Object.entries(pathMapping).map(([path, {title, header: Header, component: Component}]) => ( + {Object.entries(pathMapping).map(([path, {header: Header, component: Component}]) => ( <Route key={path} path={path} -- GitLab