From 1d10946f540de596ef5b895a1608e63ea15c896f Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Wed, 20 Mar 2024 19:44:52 +0000 Subject: sort imports for files related to this PR --- src/screens/Signup/StepHandle.tsx | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) (limited to 'src/screens/Signup/StepHandle.tsx') diff --git a/src/screens/Signup/StepHandle.tsx b/src/screens/Signup/StepHandle.tsx index e0a79e8fb..97b5f8322 100644 --- a/src/screens/Signup/StepHandle.tsx +++ b/src/screens/Signup/StepHandle.tsx @@ -1,21 +1,22 @@ import React from 'react' import {View} from 'react-native' -import {useFocusEffect} from '@react-navigation/native' -import {useLingui} from '@lingui/react' import {msg, Trans} from '@lingui/macro' -import {TimesLarge_Stroke2_Corner0_Rounded as Times} from '#/components/icons/Times' -import {Check_Stroke2_Corner0_Rounded as Check} from '#/components/icons/Check' -import {At_Stroke2_Corner0_Rounded as At} from '#/components/icons/At' -import * as TextField from '#/components/forms/TextField' -import {useSignupContext} from '#/screens/Signup/state' -import {Text} from '#/components/Typography' -import {atoms as a, useTheme} from '#/alf' +import {useLingui} from '@lingui/react' +import {useFocusEffect} from '@react-navigation/native' + import { createFullHandle, IsValidHandle, validateHandle, -} from 'lib/strings/handles' +} from '#/lib/strings/handles' import {ScreenTransition} from '#/screens/Login/ScreenTransition' +import {useSignupContext} from '#/screens/Signup/state' +import {atoms as a, useTheme} from '#/alf' +import * as TextField from '#/components/forms/TextField' +import {At_Stroke2_Corner0_Rounded as At} from '#/components/icons/At' +import {Check_Stroke2_Corner0_Rounded as Check} from '#/components/icons/Check' +import {TimesLarge_Stroke2_Corner0_Rounded as Times} from '#/components/icons/Times' +import {Text} from '#/components/Typography' export function StepHandle() { const {_} = useLingui() -- cgit 1.4.1