Skip to content

Commit 9529544

Browse files
committed
add missing props in the prop type definition
1 parent bd25364 commit 9529544

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/pages/roadmap/vision.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,10 @@ const TrilemmaContent = (props: ChildOnlyProp) => (
108108
<Box w="full" my={8} mx={0} p={8} background="cardGradient" {...props} />
109109
)
110110

111+
type Props = SSRConfig & {
112+
lastDeployDate: string
113+
}
114+
111115
export const getStaticProps = (async (context) => {
112116
const { locale } = context
113117

@@ -121,7 +125,7 @@ export const getStaticProps = (async (context) => {
121125
lastDeployDate,
122126
},
123127
}
124-
}) satisfies GetStaticProps<SSRConfig>
128+
}) satisfies GetStaticProps<Props>
125129

126130
const VisionPage = () => {
127131
const { t } = useTranslation(["page-roadmap-vision", "page-upgrades-index"])

0 commit comments

Comments
 (0)