1
0
mirror of https://github.com/h3poteto/whalebird-desktop synced 2025-02-04 19:27:34 +01:00

Fix submitting form when clicking emoji picker

This commit is contained in:
AkiraFukushima 2024-07-11 21:28:57 +09:00
parent 446550633d
commit a884522675
No known key found for this signature in database
GPG Key ID: B6E51BAC4DE1A957

View File

@ -257,7 +257,11 @@ export default function Compose(props: Props) {
/>
<Popover open={popoverEmoji} handler={setPopoverEmoji}>
<PopoverHandler>
<button className="absolute top-1 right-1 text-gray-600 cursor-pointer" title={formatMessage({ id: 'compose.emoji' })}>
<button
className="absolute top-1 right-1 text-gray-600 cursor-pointer"
type="button"
title={formatMessage({ id: 'compose.emoji' })}
>
<FaFaceLaughBeam />
</button>
</PopoverHandler>