We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 27135cf + 415e861 commit 5b7d5caCopy full SHA for 5b7d5ca
src/Board/Toolbar.tsx
@@ -13,7 +13,7 @@ export default function Toolbar({ friendData }: ToolbarProps) {
13
const friendDataValue = friendData?.val();
14
15
return (
16
- <div id="toolbar" onPointerUp={() => toggle('friends')}>
+ <div id="toolbar" onPointerUp={(e) => { toggle('friends'); e.stopPropagation(); }}>
17
{friendDataValue
18
? <Avatar user={friendDataValue} />
19
: <a className={`material-icons notranslate ${dialogState && 'active' || ''}`}>account_circle</a>}
0 commit comments