Skip to content

Commit

Permalink
Fix DEV_TAB logic
Browse files Browse the repository at this point in the history
  • Loading branch information
samholmes authored and swansontec committed Jan 15, 2024
1 parent a54a36f commit 5a65606
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/themed/MenuTabs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export const MenuTabs = (props: BottomTabBarProps) => {
if (config.extraTab == null && route.name === 'extraTab') {
return false
}
if (ENV.DEV_TAB == null && route.name === 'devTab') {
if (!ENV.DEV_TAB && route.name === 'devTab') {
return false
}
if (config.disableSwaps === true && route.name === 'exchangeTab') {
Expand Down

0 comments on commit 5a65606

Please sign in to comment.