Skip to content

Commit fe32c84

Browse files
authored
Fix report abuse in electron app
1 parent 499987c commit fe32c84

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

webapp/src/dialogs.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -701,7 +701,7 @@ export function showReportAbuseAsync(pubId?: string) {
701701
core.infoNotification(lf("Sending abuse report..."));
702702
Cloud.privatePostAsync(`${id}/abusereports`, {
703703
text: reasonInput.value
704-
})
704+
}, true)
705705
.then(res => {
706706
core.infoNotification(lf("Report sent. Thank you!"))
707707
})
@@ -949,4 +949,4 @@ export async function showTurnBackTimeDialogAsync(header: pxt.workspace.Header,
949949
/>
950950
)
951951
})
952-
}
952+
}

0 commit comments

Comments
 (0)