We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd25364 commit 9529544Copy full SHA for 9529544
src/pages/roadmap/vision.tsx
@@ -108,6 +108,10 @@ const TrilemmaContent = (props: ChildOnlyProp) => (
108
<Box w="full" my={8} mx={0} p={8} background="cardGradient" {...props} />
109
)
110
111
+type Props = SSRConfig & {
112
+ lastDeployDate: string
113
+}
114
+
115
export const getStaticProps = (async (context) => {
116
const { locale } = context
117
@@ -121,7 +125,7 @@ export const getStaticProps = (async (context) => {
121
125
lastDeployDate,
122
126
},
123
127
}
124
-}) satisfies GetStaticProps<SSRConfig>
128
+}) satisfies GetStaticProps<Props>
129
130
const VisionPage = () => {
131
const { t } = useTranslation(["page-roadmap-vision", "page-upgrades-index"])
0 commit comments