summaryrefslogtreecommitdiff
path: root/src/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/index.tsx')
-rw-r--r--src/index.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index.tsx b/src/index.tsx
index 932fbf3..1005a9d 100644
--- a/src/index.tsx
+++ b/src/index.tsx
@@ -23,7 +23,7 @@ const App: React.FC = () => (
<Switch>
<Route exact path="/" component={Home} />
{services.map(service => (
- <Route path={`/${service.route}`}>
+ <Route path={`/${service.route}`} key={service.route}>
<ServiceProvider value={service}>
<Service />
</ServiceProvider>