diff options
author | dan <dan.abramov@gmail.com> | 2024-10-29 23:02:48 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-29 23:02:48 +0000 |
commit | a22685c34542d43a71c3496df28e86207ec7fbed (patch) | |
tree | 8422153468c9e7707956dae05d68617e9bbdf0d0 /src/view/com/util/error/ErrorMessage.tsx | |
parent | 0ae64a1e0a3c3c6436b5edd0539ba9022a474ae8 (diff) | |
download | voidsky-a22685c34542d43a71c3496df28e86207ec7fbed.tar.zst |
Sort imports (#6009)
* Mark import sort/order/style rules as error * npm run lint -- --fix
Diffstat (limited to 'src/view/com/util/error/ErrorMessage.tsx')
-rw-r--r-- | src/view/com/util/error/ErrorMessage.tsx | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/view/com/util/error/ErrorMessage.tsx b/src/view/com/util/error/ErrorMessage.tsx index a4238b8a4..f0ef3a40f 100644 --- a/src/view/com/util/error/ErrorMessage.tsx +++ b/src/view/com/util/error/ErrorMessage.tsx @@ -1,8 +1,8 @@ import React from 'react' import { + StyleProp, StyleSheet, TouchableOpacity, - StyleProp, View, ViewStyle, } from 'react-native' @@ -10,11 +10,12 @@ import { FontAwesomeIcon, FontAwesomeIconStyle, } from '@fortawesome/react-native-fontawesome' -import {Text} from '../text/Text' -import {useTheme} from 'lib/ThemeContext' -import {usePalette} from 'lib/hooks/usePalette' -import {useLingui} from '@lingui/react' import {msg} from '@lingui/macro' +import {useLingui} from '@lingui/react' + +import {usePalette} from '#/lib/hooks/usePalette' +import {useTheme} from '#/lib/ThemeContext' +import {Text} from '../text/Text' export function ErrorMessage({ message, |