Fix lint warnings

This commit is contained in:
Matthew Penner 2020-07-12 16:47:00 -06:00
parent 1d2acbd5b4
commit 67ba3baff0
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ export default () => {
const { uuid } = useServer();
const [ visible, setVisible ] = useState(false);
const handleEscapeEvent = (e: KeyboardEvent) => {
const handleEscapeEvent = () => {
setVisible(false);
};