({ conversationId, keyboardHeight }: MobileInputProps)
| 15 | * breaks on iOS Safari when the keyboard is open). |
| 16 | */ |
| 17 | export function MobileInput({ conversationId, keyboardHeight }: MobileInputProps) { |
| 18 | return ( |
| 19 | <div |
| 20 | style={{ paddingBottom: keyboardHeight }} |
| 21 | className="transition-[padding] duration-100" |
| 22 | > |
| 23 | <ChatInput conversationId={conversationId} /> |
| 24 | </div> |
| 25 | ); |
| 26 | } |
nothing calls this directly
no outgoing calls
no test coverage detected