Skip to content

Commit

Permalink
fix: temporarely disable QrCode Btn
Browse files Browse the repository at this point in the history
  • Loading branch information
Tien Nam Dao committed Oct 13, 2022
1 parent 8f44faa commit b19032f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions views/accounts/AddressOverview.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { CryptoIcon, Typography as TypographyUI } from '@astraprotocol/astra-ui'
import clsx from 'clsx'
import CopyButton from 'components/Button/CopyButton'
import QrButton from 'components/Button/QrButton'
import BackgroundCard from 'components/Card/Background/BackgroundCard'
import Row from 'components/Grid/Row'
import { LinkText } from 'components/Typography/LinkText'
Expand Down Expand Up @@ -33,7 +32,7 @@ const AddressOverview = ({ address }: Props) => {
</div>
<div>
<CopyButton textCopy={address} />
<QrButton textTitle="qrcode" content={address} />
{/* <QrButton textTitle="qrcode" content={address} /> */}
</div>
</Row>
<Row style={{ justifyContent: 'space-between' }} classes="padding-top-lg">
Expand Down
3 changes: 1 addition & 2 deletions views/tokens/TokenOverview.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { CryptoIcon, Typography as TypographyUI } from '@astraprotocol/astra-ui'
import clsx from 'clsx'
import CopyButton from 'components/Button/CopyButton'
import QrButton from 'components/Button/QrButton'
import BackgroundCard from 'components/Card/Background/BackgroundCard'
import Row from 'components/Grid/Row'
import { LinkText } from 'components/Typography/LinkText'
Expand All @@ -27,7 +26,7 @@ const TokenOverview = ({ token }: Props) => {
</div>
<div>
<CopyButton textCopy={token} />
<QrButton textTitle="qrcode" content={token} />
{/* <QrButton textTitle="qrcode" content={token} /> */}
</div>
</Row>
<Row style={{ justifyContent: 'space-between' }} classes="padding-top-lg">
Expand Down

0 comments on commit b19032f

Please sign in to comment.