about summary refs log tree commit diff
path: root/src/components/forms/TextField.tsx
diff options
context:
space:
mode:
authorEric Bailey <git@esb.lol>2024-03-21 12:21:36 -0500
committerGitHub <noreply@github.com>2024-03-21 12:21:36 -0500
commit5f39ca31872af0554d79d9a6d0b070110385e9bd (patch)
treebdb1c9eb4d9e6e7aafe17f67999b83540e1e8df3 /src/components/forms/TextField.tsx
parent4ff2bb7abaac0eb8152d688ab7c71df84e725d3a (diff)
downloadvoidsky-5f39ca31872af0554d79d9a6d0b070110385e9bd.tar.zst
Mods UI fixes (#3296)
* Fix report dialog buttons on Android by adjusting styles

* Dry up label pref comp
Diffstat (limited to 'src/components/forms/TextField.tsx')
-rw-r--r--src/components/forms/TextField.tsx12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/components/forms/TextField.tsx b/src/components/forms/TextField.tsx
index 376883c9d..0bdeca645 100644
--- a/src/components/forms/TextField.tsx
+++ b/src/components/forms/TextField.tsx
@@ -1,20 +1,20 @@
 import React from 'react'
 import {
-  View,
+  AccessibilityProps,
+  StyleSheet,
   TextInput,
   TextInputProps,
   TextStyle,
+  View,
   ViewStyle,
-  StyleSheet,
-  AccessibilityProps,
 } from 'react-native'
 
+import {mergeRefs} from '#/lib/merge-refs'
 import {HITSLOP_20} from 'lib/constants'
-import {useTheme, atoms as a, web, android} from '#/alf'
-import {Text} from '#/components/Typography'
+import {android, atoms as a, useTheme, web} from '#/alf'
 import {useInteractionState} from '#/components/hooks/useInteractionState'
 import {Props as SVGIconProps} from '#/components/icons/common'
-import {mergeRefs} from '#/lib/merge-refs'
+import {Text} from '#/components/Typography'
 
 const Context = React.createContext<{
   inputRef: React.RefObject<TextInput> | null