Skip to content

Commit

Permalink
Add typing to RecordingDetailsModal
Browse files Browse the repository at this point in the history
Add typescript to the RecodringDetailsModal component.
  • Loading branch information
Arnei committed Jul 3, 2024
1 parent 16eb84f commit 36356e9
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,12 @@ import { useHotkeys } from "react-hotkeys-hook";
* This component renders the modal for displaying recording details
*/
const RecordingDetailsModal = ({
close,
recordingId
}: any) => {
close,
recordingId
}: {
close: () => void,
recordingId: string,
}) => {
const { t } = useTranslation();

useHotkeys(
Expand Down

0 comments on commit 36356e9

Please sign in to comment.