From a22685c34542d43a71c3496df28e86207ec7fbed Mon Sep 17 00:00:00 2001 From: dan Date: Tue, 29 Oct 2024 23:02:48 +0000 Subject: Sort imports (#6009) * Mark import sort/order/style rules as error * npm run lint -- --fix --- src/view/com/auth/util/TextInput.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/view/com/auth/util/TextInput.tsx') diff --git a/src/view/com/auth/util/TextInput.tsx b/src/view/com/auth/util/TextInput.tsx index 38aff0384..0ccbe6ac4 100644 --- a/src/view/com/auth/util/TextInput.tsx +++ b/src/view/com/auth/util/TextInput.tsx @@ -1,9 +1,10 @@ import React, {ComponentProps} from 'react' import {StyleSheet, TextInput as RNTextInput, View} from 'react-native' -import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome' import {IconProp} from '@fortawesome/fontawesome-svg-core' -import {usePalette} from 'lib/hooks/usePalette' -import {useTheme} from 'lib/ThemeContext' +import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome' + +import {usePalette} from '#/lib/hooks/usePalette' +import {useTheme} from '#/lib/ThemeContext' interface Props extends Omit, 'onChange'> { testID?: string -- cgit 1.4.1