Skip to content

Commit

Permalink
Merge pull request #833 from near/develop
Browse files Browse the repository at this point in the history
chore: release testnet widgets on mainnet
  • Loading branch information
gagdiez authored Jun 10, 2024
2 parents 24ba627 + 6f9753b commit c0928c7
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/Gateway/Home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ const [loading, setLoading] = useState(true);
const fetchTopRatingApps = () => {
asyncFetch(`${nearCatalogApi}/${topRating}`)
.then((res) => {
const data = res.body;
const { data } = res.body;
const dataList = Object.keys(data)
.slice(0, TRENDING_APPS_LIMIT)
.map((key) => data[key]);
Expand Down Expand Up @@ -445,8 +445,7 @@ return (
<Card title="Documentation &amp; Learning" text="Dive into example apps or get started with developer tools.">
<Flex $direction="column" $gap="16px" $mobileGap="48px">
<ButtonLink
href="https://near.org/devhub.near/widget/app?page=community&handle=chain-abstraction&tab=technical-resources"
target="_blank"
href={`/${REPL_DEVHUB}/widget/app?page=community&handle=chain-abstraction&tab=technical-resources`}
icon="ph-bold ph-link"
title="Chain Abstraction"
text="Unlock blockchain interoperability via a single NEAR account."
Expand Down

0 comments on commit c0928c7

Please sign in to comment.