Skip to content

Commit

Permalink
fix(fullscreen): change method name for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
Hormaza committed Sep 24, 2021
1 parent 75669b0 commit b4551db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/viewers/controls/fullscreen/FullscreenToggle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import useFullscreen from '../hooks/useFullscreen';
import './FullscreenToggle.scss';

export type Props = {
onFullscreenToggle: (isFullscreen: boolean, toggleFullscreen: EventTarget | null) => void;
onFullscreenToggle: (isFullscreen: boolean, toggleFullscreenEl: EventTarget | null) => void;
onKeyDown?: (event: React.KeyboardEvent<HTMLButtonElement>) => void;
};

Expand Down

0 comments on commit b4551db

Please sign in to comment.