Skip to content

Commit

Permalink
fix: remove refs to dismiss while adding withdrawn
Browse files Browse the repository at this point in the history
Issue #3296
  • Loading branch information
Chris Zubak-Skees authored and frjo committed Oct 9, 2024
1 parent 8a5e0d7 commit 9838119
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hypha/apply/funds/workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -1244,7 +1244,7 @@ def get_dismissed_statuses():
def get_withdrawn_statuses():
withdrawn_statuses = set()
for phase_name, phase in PHASES:
if phase.display_name == "Dismissed":
if phase.display_name == "Withdrawn":
withdrawn_statuses.add(phase_name)
return withdrawn_statuses

Expand Down

0 comments on commit 9838119

Please sign in to comment.