diff options
| author | Oskar <oskar@mullvad.net> | 2024-10-11 17:11:54 +0200 |
|---|---|---|
| committer | Oskar <oskar@mullvad.net> | 2024-10-22 15:18:10 +0200 |
| commit | 2deedc796ab42b8b20fa9db0e2d048ba11c2e21f (patch) | |
| tree | cf84c77cfd9d1a6f224c48ba53e10c082af9e1e4 /gui/src/renderer/components/main-view | |
| parent | 1666ff934d648dc88f213a90dde96b1b0eca7692 (diff) | |
| download | mullvadvpn-2deedc796ab42b8b20fa9db0e2d048ba11c2e21f.tar.xz mullvadvpn-2deedc796ab42b8b20fa9db0e2d048ba11c2e21f.zip | |
Split utility-hooks into two files
Diffstat (limited to 'gui/src/renderer/components/main-view')
| -rw-r--r-- | gui/src/renderer/components/main-view/ConnectionPanel.tsx | 2 | ||||
| -rw-r--r-- | gui/src/renderer/components/main-view/FeatureIndicators.tsx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gui/src/renderer/components/main-view/ConnectionPanel.tsx b/gui/src/renderer/components/main-view/ConnectionPanel.tsx index 5b4e576f76..34e98abeea 100644 --- a/gui/src/renderer/components/main-view/ConnectionPanel.tsx +++ b/gui/src/renderer/components/main-view/ConnectionPanel.tsx @@ -1,7 +1,7 @@ import { useCallback, useEffect } from 'react'; import styled from 'styled-components'; -import { useBoolean } from '../../lib/utilityHooks'; +import { useBoolean } from '../../lib/utility-hooks'; import { useSelector } from '../../redux/store'; import CustomScrollbars from '../CustomScrollbars'; import { BackAction } from '../KeyboardNavigation'; diff --git a/gui/src/renderer/components/main-view/FeatureIndicators.tsx b/gui/src/renderer/components/main-view/FeatureIndicators.tsx index 695129e2ac..5b7e60ade0 100644 --- a/gui/src/renderer/components/main-view/FeatureIndicators.tsx +++ b/gui/src/renderer/components/main-view/FeatureIndicators.tsx @@ -5,7 +5,7 @@ import styled from 'styled-components'; import { colors, strings } from '../../../config.json'; import { FeatureIndicator } from '../../../shared/daemon-rpc-types'; import { messages } from '../../../shared/gettext'; -import { useStyledRef } from '../../lib/utilityHooks'; +import { useStyledRef } from '../../lib/utility-hooks'; import { useSelector } from '../../redux/store'; import { tinyText } from '../common-styles'; import { InfoIcon } from '../InfoButton'; |
