fix build

This commit is contained in:
dohsimpson
2025-01-05 17:03:05 -05:00
parent aaa7e384bc
commit bc5fa5c71f
2 changed files with 3 additions and 3 deletions

View File

@@ -73,7 +73,7 @@ export default function AddEditWishlistItemModal({ isOpen, onClose, onSave, item
<PopoverContent className="w-[300px] p-0">
<Picker
data={data}
onEmojiSelect={(emoji: any) => {
onEmojiSelect={(emoji: { native: string }) => {
setName(prev => `${prev}${emoji.native}`)
// Focus back on input after selection
const input = document.getElementById('name') as HTMLInputElement