diff options
author | Samuel Newman <mozzius@protonmail.com> | 2024-03-20 19:44:52 +0000 |
---|---|---|
committer | Samuel Newman <mozzius@protonmail.com> | 2024-03-20 19:44:52 +0000 |
commit | 1d10946f540de596ef5b895a1608e63ea15c896f (patch) | |
tree | b61a24bce2e108cdad8ac91eff0e2e6566e065ad /src/components/forms/HostingProvider.tsx | |
parent | 823ce637962edc645e133b333c9ac099dccaf22b (diff) | |
download | voidsky-1d10946f540de596ef5b895a1608e63ea15c896f.tar.zst |
sort imports for files related to this PR
Diffstat (limited to 'src/components/forms/HostingProvider.tsx')
-rw-r--r-- | src/components/forms/HostingProvider.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/forms/HostingProvider.tsx b/src/components/forms/HostingProvider.tsx index 11d76316d..34db9442d 100644 --- a/src/components/forms/HostingProvider.tsx +++ b/src/components/forms/HostingProvider.tsx @@ -3,15 +3,15 @@ import {Keyboard, View} from 'react-native' import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' +import {toNiceDomain} from '#/lib/strings/url-helpers' import {isAndroid} from '#/platform/detection' +import {ServerInputDialog} from '#/view/com/auth/server-input' import {atoms as a, useTheme} from '#/alf' import {Globe_Stroke2_Corner0_Rounded as Globe} from '#/components/icons/Globe' import {PencilLine_Stroke2_Corner0_Rounded as Pencil} from '#/components/icons/Pencil' +import {Button} from '../Button' import {useDialogControl} from '../Dialog' import {Text} from '../Typography' -import {ServerInputDialog} from '#/view/com/auth/server-input' -import {toNiceDomain} from '#/lib/strings/url-helpers' -import {Button} from '../Button' export function HostingProvider({ serviceUrl, |