Skip to content

Commit

Permalink
fix last_effect
Browse files Browse the repository at this point in the history
  • Loading branch information
YeonV committed Jan 1, 2025
1 parent a06dd9c commit dbec798
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const EffectDropDown = ({
value={
virtual && virtual.effect && virtual.effect.type
? virtual.effect.type
: virtual.last_effect
: virtual?.last_effect
? virtual.last_effect
: 'Choose Effect'
}
Expand All @@ -56,7 +56,7 @@ const EffectDropDown = ({
title={
virtual && virtual.effect && virtual.effect.type
? title
: virtual.last_effect
: virtual?.last_effect
? 'Last Effect'
: 'Currently Inactive'
}
Expand Down

0 comments on commit dbec798

Please sign in to comment.