Skip to content

Commit

Permalink
hotfix: remove buy button
Browse files Browse the repository at this point in the history
  • Loading branch information
elehma4 committed Feb 2, 2024
1 parent 9aaf3f8 commit df84727
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/components/popup/home/NoBalance.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default function NoBalance() {
{browser.i18n.getMessage("home_no_balance", "$AR")}
</NoBalanceText>
<ButtonWrapper>
<BuyButton route={"/purchase"} logo={true} />
{/* <BuyButton route={"/purchase"} logo={true} /> */}
<Container>
<CustomButton
onClick={() => push("/receive")}
Expand Down Expand Up @@ -52,12 +52,12 @@ const Art = styled.img.attrs({
alt: "No balance art"
})`
user-select: none;
width: 137px;
width: 184px;
`;

const ButtonWrapper = styled.div`
width: 100%;
margin-top: -10px;
margin-top: -2px;
`;

const Container = styled.div`
Expand Down
2 changes: 1 addition & 1 deletion src/routes/popup/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export default function Home() {
<Balance />
{(!noBalance && (
<>
<BuyButton padding={true} route={"/purchase"} logo={true} />
{/* <BuyButton padding={true} route={"/purchase"} logo={true} /> */}
<Tokens />
<Collectibles />
</>
Expand Down

0 comments on commit df84727

Please sign in to comment.