Skip to content

Commit b2a04ee

Browse files
committed
tiny code cleanup
1 parent af5f97e commit b2a04ee

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

client/src/components/Grid/Grid.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,9 +122,9 @@ const Grid = ({ grid, setGrid, words, setWords }) => {
122122
/>
123123
)}
124124
<table
125-
onMouseDown={(e) => mouseDownHandler(e)}
126-
onMouseMove={(e) => mouseMoveHandler(e)}
127-
onMouseUp={(e) => mouseUpHandler(e)}
125+
onMouseDown={mouseDownHandler}
126+
onMouseMove={mouseMoveHandler}
127+
onMouseUp={mouseUpHandler}
128128
>
129129
<tbody>
130130
{grid.gridIn2D.map((row, i) => (

0 commit comments

Comments
 (0)