Fix types

Signed-off-by: Robin Townsend <robin@robin.town>
pull/21833/head
Robin Townsend 2021-07-21 02:42:30 -04:00
parent 3911666c52
commit 0497e0864f
1 changed files with 2 additions and 2 deletions

View File

@ -230,11 +230,11 @@ export default class ImageView extends React.Component<IProps, IState> {
}
};
private onZoomInClick = (ev: MouseEvent) => {
private onZoomInClick = () => {
this.zoomDelta(ZOOM_STEP);
};
private onZoomOutClick = (ev: MouseEvent) => {
private onZoomOutClick = () => {
this.zoomDelta(-ZOOM_STEP);
};