diff --git a/apps/mobile/src/features/keyboard/CommandPalette.tsx b/apps/mobile/src/features/keyboard/CommandPalette.tsx index 0b96f7d6a126..a79e99fc212a 100644 --- a/apps/mobile/src/features/keyboard/CommandPalette.tsx +++ b/apps/mobile/src/features/keyboard/CommandPalette.tsx @@ -8,6 +8,7 @@ import { KeyboardAvoidingView, Modal, Pressable, + Text as NativeText, TextInput, useWindowDimensions, View, @@ -15,10 +16,10 @@ import { import { GestureHandlerRootView } from "react-native-gesture-handler"; +import { GlassSurface } from "../../components/GlassSurface"; import { RowPressable } from "../../components/RowPressable"; import { AppText as Text } from "../../components/AppText"; import { SymbolView, type AppSymbolName } from "../../components/AppSymbol"; -import { GlassSurface } from "../../components/GlassSurface"; import { scopedProjectKey, scopedThreadKey } from "../../lib/scopedEntities"; import { T3KeyboardCommands } from "../../native/T3KeyboardCommands"; import { useProjects, useThreadShell, useThreadShells } from "../../state/entities"; @@ -101,7 +102,9 @@ function PaletteRow(props: { ) : null} {props.index < 9 ? ( - ⌘{props.index + 1} + + ⌘{props.index + 1} + ) : null} ); @@ -395,6 +398,8 @@ export function CommandPalette(props: { />