Skip to content

Commit

Permalink
updating lint warnings
Browse files Browse the repository at this point in the history
Signed-off-by: Prakash P S <prakashps@Prakashs-MacBook-Pro.local>
  • Loading branch information
Prakash P S authored and Prakash P S committed Sep 7, 2023
1 parent c288c2f commit d4aca83
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ class ChannelParticipationDetails extends Component {
loading: true,
editLoading: true,
});
var channel_details = await ChannelApi.getChannel(channel.name);
let channel_details = await ChannelApi.getChannel(channel.name);
this.props.updateState(SCOPE, {
channelEdit: channel.name,
peerName: channel_details.peers[0].id,
Expand Down Expand Up @@ -462,7 +462,7 @@ class ChannelParticipationDetails extends Component {
if (cb) cb();
});
});
this.props.updateState(SCOPE,{showEditChannelModal: true})
this.props.updateState(SCOPE, { showEditChannelModal: true });
})
.catch(error => {
this.acls = [];
Expand Down Expand Up @@ -639,9 +639,9 @@ class ChannelParticipationDetails extends Component {

{!this.props.loading && this.props.showEditChannelModal && (
<ChannelModal
onClose={this.hideEditChannelModal}
onComplete={channelName => {
this.props.showSuccess('channel_update_request_submitted', { channelName }, SCOPE)
onClose={this.hideEditChannelModal}
onComplete={channelName => {
this.props.showSuccess('channel_update_request_submitted', { channelName }, SCOPE);
}}
channelId={this.props.channelEdit}
existingOrgs={this.props.members}
Expand Down

0 comments on commit d4aca83

Please sign in to comment.