Skip to content

Commit

Permalink
fix: hardcoded strings
Browse files Browse the repository at this point in the history
  • Loading branch information
gamalielhere committed May 6, 2023
1 parent d5ce565 commit fbc8b98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dapps/staked-dapp/components/StakedStatus.vue
Original file line number Diff line number Diff line change
Expand Up @@ -313,8 +313,8 @@
</div>
<div class="font-weight-medium mt-1">
{{
active.status.toLowerCase() === 'active' ||
active.status.toLowerCase() === 'exiting'
active.status.toLowerCase() === STATUS_TYPES.ACTIVE ||
active.status.toLowerCase() === STATUS_TYPES.EXITING
? 'Exited, in queue for withdrawal'
: 'Exited and withdrawn'
}}
Expand Down

0 comments on commit fbc8b98

Please sign in to comment.