Browse Source

Fixing bug in AccountScreen: not registered user must not see the

"alterar senha" option.
master
GabrielTrettel 2 years ago
parent
commit
f05f80bae0
  1. 2
      src/app/screens/AccountScreen.js

2
src/app/screens/AccountScreen.js

@ -130,7 +130,7 @@ function AccountScreen(props) {
const profileItems = [
{
icon: "lock",
show: true,
show: isRegistered,
IconProvider: MaterialCommunityIcons,
title: "alterar senha",
onPress: () => {

Loading…
Cancel
Save