Skip to content

Commit

Permalink
added type void
Browse files Browse the repository at this point in the history
  • Loading branch information
Spiral-Memory committed Mar 13, 2024
1 parent e5c8f34 commit dd279b5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Components/Patient/FileUpload.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -557,7 +557,9 @@ export const FileUpload = (props: FileUploadProps) => {
setbtnloader(false);
};

const handleSetMicPermission = (isPermitted: boolean) => {
const handleSetMicPermission: (isPermitted: boolean) => void = (
isPermitted
) => {
setIsMicPermission(isPermitted);
};

Expand Down

0 comments on commit dd279b5

Please sign in to comment.