Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
icecream17 authored Feb 26, 2024
1 parent 8656498 commit 65c69aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Elems/MainElems/Sudoku.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ export default class Sudoku extends React.Component<SudokuProps> {

const target = event.target as HTMLDivElement
const shiftHeld = keysPressed.has('Shift')
const ctrlHeld = keysPressed.has('Ctrl')
const ctrlHeld = keysPressed.has('Control')

for (let {row, column} of this.cellsSelected) {
let cell = this.props.sudoku.cells[row][column]
Expand Down

0 comments on commit 65c69aa

Please sign in to comment.