Skip to content

Commit

Permalink
small lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nikk15 committed Jul 25, 2023
1 parent b26de51 commit 94c96fd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/react-components/ui-root.js
Original file line number Diff line number Diff line change
Expand Up @@ -1167,7 +1167,7 @@ class UIRoot extends Component {
onClick: () =>
this.showNonHistoriedDialog(LeaveRoomModal, {
destinationUrl: "/",
reason: LeaveReason.createRoom,
reason: LeaveReason.createRoom
})
},
!isLockedDownDemo && {
Expand Down Expand Up @@ -1254,7 +1254,7 @@ class UIRoot extends Component {
onClick: () => {
this.showNonHistoriedDialog(LeaveRoomModal, {
destinationUrl: "/",
reason: LeaveReason.leaveRoom,
reason: LeaveReason.leaveRoom
});
}
},
Expand Down Expand Up @@ -1678,13 +1678,13 @@ class UIRoot extends Component {
preset="cancel"
selected={!!this.state.leaving}
onClick={() => {
this.setState({leaving: true})
this.setState({ leaving: true });
this.showNonHistoriedDialog(LeaveRoomModal, {
destinationUrl: "/",
reason: LeaveReason.leaveRoom,
onClose: () => {
this.setState({leaving: false})
this.closeDialog()
this.setState({ leaving: false });
this.closeDialog();
}
});
}}
Expand Down

0 comments on commit 94c96fd

Please sign in to comment.