Skip to content

Commit

Permalink
fix cursor button
Browse files Browse the repository at this point in the history
  • Loading branch information
handeyeco committed Jul 20, 2023
1 parent 3e5253e commit 692bc6c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ class ProvidedKeypad extends React.Component<Props, State> {
return;
}

this.state.keyHandler?.(key);
const cursor = this.state.keyHandler?.(key);
this.setState({cursor});
}

render(): React.ReactNode {
Expand Down

0 comments on commit 692bc6c

Please sign in to comment.