Skip to content

Commit

Permalink
fix: show convert button for level 3 (#3348)
Browse files Browse the repository at this point in the history
  • Loading branch information
dolcalmi authored Dec 3, 2024
1 parent 4a848be commit aefe4e3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/screens/home-screen/home-screen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,8 @@ export const HomeScreen: React.FC = () => {
if (
!isIos ||
dataUnauthed?.globals?.network !== "mainnet" ||
dataAuthed?.me?.defaultAccount.level === AccountLevel.Two
dataAuthed?.me?.defaultAccount.level === AccountLevel.Two ||
dataAuthed?.me?.defaultAccount.level === AccountLevel.Three
) {
buttons.unshift({
title: LL.ConversionDetailsScreen.title(),
Expand Down

0 comments on commit aefe4e3

Please sign in to comment.