about summary refs log tree commit diff
path: root/src/components/forms/FormError.tsx
diff options
context:
space:
mode:
authorSamuel Newman <mozzius@protonmail.com>2024-03-20 19:44:52 +0000
committerSamuel Newman <mozzius@protonmail.com>2024-03-20 19:44:52 +0000
commit1d10946f540de596ef5b895a1608e63ea15c896f (patch)
treeb61a24bce2e108cdad8ac91eff0e2e6566e065ad /src/components/forms/FormError.tsx
parent823ce637962edc645e133b333c9ac099dccaf22b (diff)
downloadvoidsky-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.tsx2
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()