diff --git a/src/ui/root/DeputyContributionSurveyRow.tsx b/src/ui/root/DeputyContributionSurveyRow.tsx index 5c1fc0b2..51b0f8f8 100644 --- a/src/ui/root/DeputyContributionSurveyRow.tsx +++ b/src/ui/root/DeputyContributionSurveyRow.tsx @@ -511,7 +511,11 @@ export default class DeputyContributionSurveyRow extends EventTarget implements const unfinishedWithStatus = this.statusModified && !this.completed; if ( this.unfinishedMessageBox ) { - this.unfinishedMessageBox.toggle( unfinishedWithStatus ); + this.unfinishedMessageBox.toggle( + // If using danger mode, this should always be enabled. + window.deputy.config.core.dangerMode.get() || + unfinishedWithStatus + ); } this.statusAutosaveFunction(); }