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/FormError.tsx | |
parent | 823ce637962edc645e133b333c9ac099dccaf22b (diff) | |
download | voidsky-1d10946f540de596ef5b895a1608e63ea15c896f.tar.zst |
sort imports for files related to this PR
Diffstat (limited to 'src/components/forms/FormError.tsx')
-rw-r--r-- | src/components/forms/FormError.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/forms/FormError.tsx b/src/components/forms/FormError.tsx index 05f2e5893..905aeebd6 100644 --- a/src/components/forms/FormError.tsx +++ b/src/components/forms/FormError.tsx @@ -1,9 +1,9 @@ import React from 'react' import {View} from 'react-native' +import {atoms as a, useTheme} from '#/alf' import {Warning_Stroke2_Corner0_Rounded as Warning} from '#/components/icons/Warning' import {Text} from '#/components/Typography' -import {atoms as a, useTheme} from '#/alf' export function FormError({error}: {error?: string}) { const t = useTheme() |