Skip to content

Commit

Permalink
Merge branch 'main' into sdk-1.4.1-integration
Browse files Browse the repository at this point in the history
  • Loading branch information
kpyszkowski committed Oct 26, 2023
2 parents 221d9f6 + 39a0be6 commit b9f1835
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 15 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/dashboard-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,7 @@ jobs:
run: git config --global url."https://".insteadOf git://

- name: Install dependencies
run: yarn install --ignore-scripts --frozen-lockfile

- name: Run token-dashboard post-install script
run: yarn run postinstall
run: yarn install --frozen-lockfile

- name: Check formatting
run: yarn format
Expand Down Expand Up @@ -80,7 +77,7 @@ jobs:
@keep-network/tbtc-v2 \
@keep-network/tbtc-v2.ts \
@keep-network/ecdsa \
@keep-network/random-beacon --ignore-scripts
@keep-network/random-beacon
- name: Run postinstall script
# `yarn upgrade` doesn't trigger the `postinstall` script.
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/dashboard-mainnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,7 @@ jobs:
run: git config --global url."https://".insteadOf git://

- name: Install dependencies
run: yarn install --ignore-scripts --frozen-lockfile

- name: Run token-dashboard post-install script
run: yarn run postinstall
run: yarn install --frozen-lockfile

# FIXME: It's work in progress, the contracts are not yet published.
# - name: Resolve latest mainnet contracts
Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/reusable-build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,11 +102,7 @@ jobs:

- name: Install dependencies
shell: bash
run: yarn install --ignore-scripts --frozen-lockfile

- name: Run token-dashboard post-install script
shell: bash
run: yarn run postinstall
run: yarn install --frozen-lockfile

- name: Get upstream packages versions
if: inputs.useUpstreamBuilds == true
Expand Down
9 changes: 8 additions & 1 deletion src/pages/tBTC/Explorer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,14 @@ export const ExplorerPage: PageComponent = () => {
</Flex>
<Divider my="8" />
<Flex direction={{ base: "column", xl: "row" }} alignItems="center">
<H1>{formatFiatCurrencyAmount(tvlInUSD.tBTC, "0,00.00")} USD</H1>
<H1
fontSize={{
base: "clamp(24px, 8vw, 48px)",
xl: "60px",
}}
>
{formatFiatCurrencyAmount(tvlInUSD.tBTC, "0,00.00")} USD
</H1>
<ButtonLink
size="lg"
variant="outline"
Expand Down

0 comments on commit b9f1835

Please sign in to comment.