diff --git a/src/App/Pages/Accounts/VerificationCodePage.xaml b/src/App/Pages/Accounts/VerificationCodePage.xaml index 3fe2b643e..6cba50558 100644 --- a/src/App/Pages/Accounts/VerificationCodePage.xaml +++ b/src/App/Pages/Accounts/VerificationCodePage.xaml @@ -62,7 +62,7 @@ Grid.Column="0" ReturnType="Go" ReturnCommand="{Binding MainActionCommand}" /> - ShowPassword ? "" : ""; + public string ShowPasswordIcon => ShowPassword ? BitwardenIcons.EyeSlash : BitwardenIcons.Eye; public void TogglePassword() => ShowPassword = !ShowPassword;