File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 1
1
import { GetStaticProps } from "next/types"
2
- import { SSRConfig , useTranslation } from "next-i18next"
2
+ import { useTranslation } from "next-i18next"
3
3
import { serverSideTranslations } from "next-i18next/serverSideTranslations"
4
4
import {
5
5
Box ,
@@ -12,6 +12,8 @@ import {
12
12
SimpleGrid ,
13
13
} from "@chakra-ui/react"
14
14
15
+ import { BasePageProps } from "@/lib/types"
16
+
15
17
import ButtonLink from "@/components/Buttons/ButtonLink"
16
18
import CalloutBanner from "@/components/CalloutBanner"
17
19
import DataProductCard from "@/components/DataProductCard"
@@ -77,9 +79,9 @@ interface Market {
77
79
url : string
78
80
}
79
81
80
- type Props = SSRConfig & {
81
- contentNotTranslated : boolean
82
- lastDeployDate : string
82
+ type Props = BasePageProps & {
83
+ markets : Market [ ]
84
+ marketsHasError : boolean
83
85
}
84
86
85
87
// Fetch external API data once to avoid hitting rate limit
You can’t perform that action at this time.
0 commit comments