Skip to content

Commit

Permalink
Merge pull request #797 from Arnei/typing-recordingdetailsmodal
Browse files Browse the repository at this point in the history
Add typing to RecordingDetailsModal
  • Loading branch information
Arnei authored Jul 5, 2024
2 parents 007a27f + 36356e9 commit a6f2b0a
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 a6f2b0a

Please sign in to comment.