Skip to content

Commit

Permalink
Fix UI/UX Page [Settings]
Browse files Browse the repository at this point in the history
[+] fix(settings.tsx): fix condition to show balance query in settings component
[+] fix(settings.tsx): add condition to hide balance query for app clients
  • Loading branch information
H0llyW00dzZ committed Nov 14, 2023
1 parent 9da455a commit f1772f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1052,7 +1052,7 @@ export function Settings() {
</>
)}

{!shouldHideBalanceQuery ? (
{!shouldHideBalanceQuery && !clientConfig?.isApp ? (
<ListItem
title={Locale.Settings.Usage.Title}
subTitle={
Expand Down

0 comments on commit f1772f4

Please sign in to comment.