Skip to content

Commit

Permalink
remove more unused
Browse files Browse the repository at this point in the history
  • Loading branch information
howardchung committed May 29, 2021
1 parent e6077fe commit bcbc4ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Modal/FileShareModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export class FileShareModal extends React.Component<{
startFileShare: Function;
}> {
render() {
const { closeModal, startFileShare } = this.props;
const { closeModal } = this.props;
return (
<Modal open={true} onClose={closeModal as any}>
<Modal.Header>Share A File</Modal.Header>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Modal/ScreenShareModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export class ScreenShareModal extends React.Component<{
startScreenShare: Function;
}> {
render() {
const { closeModal, startScreenShare } = this.props;
const { closeModal } = this.props;
return (
<Modal open={true} onClose={closeModal as any}>
<Modal.Header>Share Your Screen</Modal.Header>
Expand Down

0 comments on commit bcbc4ed

Please sign in to comment.