Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[object PointerEvent] #410

Open
mirajpatel752 opened this issue May 14, 2024 · 1 comment
Open

[object PointerEvent] #410

mirajpatel752 opened this issue May 14, 2024 · 1 comment

Comments

@mirajpatel752
Copy link

[object PointerEvent] select emoji but not show

@mirajpatel752
Copy link
Author

<input
ref={commentBoxInputRef}
type="text"
className="w-full border-[1px] border-[#1E71F2] h-[50px] rounded-[50px] pl-[55px] outline-none focus:ring-offset-0 focus:ring-0 font-sans"
placeholder="Write comments..."
autoComplete="off"
value={commentData || generatedComment}
onChange={(e) => {
setCommentData(e.target.value);
setGeneratedComment("");
}}
onKeyDown={(e) => {
if (e.key === "Enter") {
e.preventDefault();
postComment(specificPostId);
}
}}
style={{
scrollbarWidth: "none",
msOverflowStyle: "none",
WebkitScrollbar: "none",
}}
/>
{showPicker && (
<Picker
pickerStyle={{ width: "100%" }}
onEmojiClick={onEmojiClick}
/>
)}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant