Skip to content

Commit

Permalink
fix: use isMasked function for tenant mask button
Browse files Browse the repository at this point in the history
  • Loading branch information
JoelJacobStephen committed Mar 8, 2024
1 parent a44d0a3 commit f141cd4
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -70,7 +70,9 @@
class="!my-2 !bg-primaryLight flex-1"
/>
<HoppButtonSecondary
:icon="field.isMasked ? IconEye : IconEyeOff"
:icon="
isMasked(provider.name, field.key) ? IconEye : IconEyeOff
"
class="bg-primaryLight h-9 mt-2"
@click="toggleMask(provider.name, field.key)"
/>
Expand Down

0 comments on commit f141cd4

Please sign in to comment.