remove reaction (kind 7) and fix onclick event
This commit is contained in:
@@ -19,7 +19,11 @@ export function NoteWrapper({
|
||||
};
|
||||
|
||||
return (
|
||||
<div onKeyDown={(event) => openThread(event, href)} className={className}>
|
||||
<div
|
||||
onClick={(event) => openThread(event, href)}
|
||||
onKeyDown={(event) => openThread(event, href)}
|
||||
className={className}
|
||||
>
|
||||
{children}
|
||||
</div>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user