Skip to content

Commit cf6f1b6

Browse files
authored
Merge pull request #14214 from ethereum/master
Master -> staging
2 parents a9020ff + e1a8850 commit cf6f1b6

File tree

5 files changed

+9
-11
lines changed

5 files changed

+9
-11
lines changed

src/lib/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ export const COMMUNITY_BLOGS: CommunityBlog[] = [
185185
},
186186
{
187187
href: "https://ethstaker.cc/blog",
188-
feed: "https://paragraph.xyz/api/blogs/rss/@ethstaker",
188+
feed: "https://raw.githubusercontent.com/eth-educators/github-actions/refs/heads/main/_data/blog_data.xml",
189189
},
190190
{
191191
href: "https://0xparc.org/blog",

src/pages/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ import { getLocaleTimestamp } from "@/lib/utils/time"
6767
import { getRequiredNamespacesForPage } from "@/lib/utils/translations"
6868

6969
import {
70-
BASE_TIME_UNIT,
7170
BLOG_FEEDS,
7271
BLOGS_WITHOUT_FEED,
7372
CALENDAR_DISPLAY_COUNT,
@@ -174,7 +173,8 @@ export const getStaticProps = (async ({ locale }) => {
174173
metricResults,
175174
rssData: { rssItems, blogLinks },
176175
},
177-
revalidate: BASE_TIME_UNIT * 24,
176+
// TODO: re-enable revalidation once we have a workaround for failing builds
177+
// revalidate: BASE_TIME_UNIT * 24,
178178
}
179179
}) satisfies GetStaticProps<Props>
180180

src/pages/stablecoins.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,6 @@ import { runOnlyOnce } from "@/lib/utils/runOnlyOnce"
4444
import { getLocaleTimestamp } from "@/lib/utils/time"
4545
import { getRequiredNamespacesForPage } from "@/lib/utils/translations"
4646

47-
import { BASE_TIME_UNIT } from "@/lib/constants"
48-
4947
import {
5048
fetchEthereumEcosystemData,
5149
fetchEthereumStablecoinsData,
@@ -189,7 +187,8 @@ export const getStaticProps = (async ({ locale }) => {
189187
marketsHasError,
190188
},
191189
// Updated once a week
192-
revalidate: BASE_TIME_UNIT * 24 * 7,
190+
// TODO: re-enable revalidation once we have a workaround for failing builds
191+
// revalidate: BASE_TIME_UNIT * 24 * 7,
193192
}
194193
}) satisfies GetStaticProps<Props>
195194

src/pages/staking/index.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,6 @@ import { runOnlyOnce } from "@/lib/utils/runOnlyOnce"
4040
import { getLocaleTimestamp } from "@/lib/utils/time"
4141
import { getRequiredNamespacesForPage } from "@/lib/utils/translations"
4242

43-
import { BASE_TIME_UNIT } from "@/lib/constants"
44-
4543
import rhino from "@/public/images/upgrades/upgrade_rhino.png"
4644

4745
type BenefitsType = {
@@ -176,7 +174,8 @@ export const getStaticProps = (async ({ locale }) => {
176174
lastDeployLocaleTimestamp,
177175
},
178176
// Updated once a day
179-
revalidate: BASE_TIME_UNIT * 24,
177+
// TODO: re-enable revalidation once we have a workaround for failing builds
178+
// revalidate: BASE_TIME_UNIT * 24,
180179
}
181180
}) satisfies GetStaticProps<Props>
182181

src/pages/wallets/find-wallet.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ import {
3232
} from "@/lib/utils/wallets"
3333

3434
import {
35-
BASE_TIME_UNIT,
3635
DEFAULT_LOCALE,
3736
NAV_BAR_PX_HEIGHT,
3837
WALLETS_FILTERS_DEFAULT,
@@ -93,7 +92,8 @@ export const getStaticProps = (async ({ locale }) => {
9392
wallets,
9493
},
9594
// Updated once a day
96-
revalidate: BASE_TIME_UNIT * 24,
95+
// TODO: re-enable revalidation once we have a workaround for failing builds
96+
// revalidate: BASE_TIME_UNIT * 24,
9797
}
9898
}) satisfies GetStaticProps<Props>
9999

0 commit comments

Comments
 (0)