Skip to content

Commit

Permalink
mutiny plus on ios and new icon
Browse files Browse the repository at this point in the history
  • Loading branch information
futurepaul committed Apr 3, 2024
1 parent a75eefd commit f4cae92
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
Binary file added public/m-plus.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 5 additions & 1 deletion src/routes/Main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,11 @@ export function WalletHeader(props: { loading: boolean }) {
<HomeBalance />
<Circle onClick={() => navigate("/settings")}>
<img
src="/mutiny-pixel-m.png"
src={
state.mutiny_plus
? "/m-plus.png"
: "/mutiny-pixel-m.png"
}
alt="mutiny"
width={"32px"}
height={"32px"}
Expand Down
2 changes: 1 addition & 1 deletion src/routes/settings/Root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export function Settings() {
<BackLink />
<LargeHeader>{i18n.t("settings.header")}</LargeHeader>
<VStack biggap>
<Show when={!selfHosted && !ios}>
<Show when={state.mutiny_plus || (!selfHosted && !ios)}>
<MutinyPlusCta />
</Show>
<SettingsLinkList
Expand Down

0 comments on commit f4cae92

Please sign in to comment.