File tree Expand file tree Collapse file tree 5 files changed +9
-11
lines changed Expand file tree Collapse file tree 5 files changed +9
-11
lines changed Original file line number Diff line number Diff line change @@ -185,7 +185,7 @@ export const COMMUNITY_BLOGS: CommunityBlog[] = [
185
185
} ,
186
186
{
187
187
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 " ,
189
189
} ,
190
190
{
191
191
href : "https://0xparc.org/blog" ,
Original file line number Diff line number Diff line change @@ -67,7 +67,6 @@ import { getLocaleTimestamp } from "@/lib/utils/time"
67
67
import { getRequiredNamespacesForPage } from "@/lib/utils/translations"
68
68
69
69
import {
70
- BASE_TIME_UNIT ,
71
70
BLOG_FEEDS ,
72
71
BLOGS_WITHOUT_FEED ,
73
72
CALENDAR_DISPLAY_COUNT ,
@@ -174,7 +173,8 @@ export const getStaticProps = (async ({ locale }) => {
174
173
metricResults,
175
174
rssData : { rssItems, blogLinks } ,
176
175
} ,
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,
178
178
}
179
179
} ) satisfies GetStaticProps < Props >
180
180
Original file line number Diff line number Diff line change @@ -44,8 +44,6 @@ import { runOnlyOnce } from "@/lib/utils/runOnlyOnce"
44
44
import { getLocaleTimestamp } from "@/lib/utils/time"
45
45
import { getRequiredNamespacesForPage } from "@/lib/utils/translations"
46
46
47
- import { BASE_TIME_UNIT } from "@/lib/constants"
48
-
49
47
import {
50
48
fetchEthereumEcosystemData ,
51
49
fetchEthereumStablecoinsData ,
@@ -189,7 +187,8 @@ export const getStaticProps = (async ({ locale }) => {
189
187
marketsHasError,
190
188
} ,
191
189
// 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,
193
192
}
194
193
} ) satisfies GetStaticProps < Props >
195
194
Original file line number Diff line number Diff line change @@ -40,8 +40,6 @@ import { runOnlyOnce } from "@/lib/utils/runOnlyOnce"
40
40
import { getLocaleTimestamp } from "@/lib/utils/time"
41
41
import { getRequiredNamespacesForPage } from "@/lib/utils/translations"
42
42
43
- import { BASE_TIME_UNIT } from "@/lib/constants"
44
-
45
43
import rhino from "@/public/images/upgrades/upgrade_rhino.png"
46
44
47
45
type BenefitsType = {
@@ -176,7 +174,8 @@ export const getStaticProps = (async ({ locale }) => {
176
174
lastDeployLocaleTimestamp,
177
175
} ,
178
176
// 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,
180
179
}
181
180
} ) satisfies GetStaticProps < Props >
182
181
Original file line number Diff line number Diff line change @@ -32,7 +32,6 @@ import {
32
32
} from "@/lib/utils/wallets"
33
33
34
34
import {
35
- BASE_TIME_UNIT ,
36
35
DEFAULT_LOCALE ,
37
36
NAV_BAR_PX_HEIGHT ,
38
37
WALLETS_FILTERS_DEFAULT ,
@@ -93,7 +92,8 @@ export const getStaticProps = (async ({ locale }) => {
93
92
wallets,
94
93
} ,
95
94
// 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,
97
97
}
98
98
} ) satisfies GetStaticProps < Props >
99
99
You can’t perform that action at this time.
0 commit comments