diff options
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() |