summaryrefslogtreecommitdiffhomepage
path: root/gui/src/renderer/components/KeyboardNavigation.tsx
diff options
context:
space:
mode:
authorOskar Nyberg <oskar@mullvad.net>2023-02-27 10:06:45 +0100
committerOskar Nyberg <oskar@mullvad.net>2023-02-27 10:06:45 +0100
commitf49760525dbd4bfb5e19a0231d1d8b7a41f76ce1 (patch)
tree1be5586f97d23d154a0d245a115af708761174e1 /gui/src/renderer/components/KeyboardNavigation.tsx
parenta0d5aa28ad71e340bfa002c83285235ec74cea68 (diff)
parentc7a47757e8208ff7b3b809621680aa79abc9f4f3 (diff)
downloadmullvadvpn-f49760525dbd4bfb5e19a0231d1d8b7a41f76ce1.tar.xz
mullvadvpn-f49760525dbd4bfb5e19a0231d1d8b7a41f76ce1.zip
Merge branch 'fix-e2e-tests-failing'
Diffstat (limited to 'gui/src/renderer/components/KeyboardNavigation.tsx')
-rw-r--r--gui/src/renderer/components/KeyboardNavigation.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/gui/src/renderer/components/KeyboardNavigation.tsx b/gui/src/renderer/components/KeyboardNavigation.tsx
index b98f57b4ce..f88b4f31e9 100644
--- a/gui/src/renderer/components/KeyboardNavigation.tsx
+++ b/gui/src/renderer/components/KeyboardNavigation.tsx
@@ -2,7 +2,8 @@ import React, { useCallback, useContext, useEffect, useMemo, useState } from 're
import { useLocation } from 'react-router';
import { useHistory } from '../lib/history';
-import { disableDismissForRoutes, RoutePath } from '../lib/routes';
+import { disableDismissForRoutes } from '../lib/routeHelpers';
+import { RoutePath } from '../lib/routes';
interface IKeyboardNavigationProps {
children: React.ReactElement | Array<React.ReactElement>;