Skip to content

Commit

Permalink
Merge pull request bcgov#42 from turb0c0w/sam/host-dashboard
Browse files Browse the repository at this point in the history
removing pending for applied status
  • Loading branch information
turb0c0w authored Jul 9, 2024
2 parents e21c0c4 + 9c24e99 commit 97117c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion strr-web/pages/application-status.vue
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ registrations.value =
const getFlavour = (status: string, invoices: RegistrationI['invoices']):
{ alert: AlertsFlavourE, text: string } | undefined => {
if (status === 'PENDING' && invoices[0].payment_status_code === 'COMPLETED') {
if (invoices[0].payment_status_code === 'COMPLETED') {
return {
text: tRegistrationStatus('applied'),
alert: AlertsFlavourE.APPLIED
Expand Down

0 comments on commit 97117c4

Please sign in to comment.