Update chat requests header (#10446)

This commit is contained in:
DS Boyce
2026-05-08 11:53:02 -07:00
committed by GitHub
parent 5640aed7e3
commit c8e4815837
7 changed files with 97 additions and 167 deletions
+2 -1
View File
@@ -1,5 +1,6 @@
import {type ComponentProps, type JSX} from 'react'
import {
type GestureResponderEvent,
type Pressable,
type StyleProp,
StyleSheet,
@@ -49,7 +50,7 @@ export function FABInner({testID, icon, onPress, style, ...props}: FABProps) {
onPress?.(evt)
playHaptic('Light')
}}
onLongPress={ios((evt: any) => {
onLongPress={ios((evt: GestureResponderEvent) => {
onPress?.(evt)
playHaptic('Heavy')
})}