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 9d1ee2f commit 5548285Copy full SHA for 5548285
components/hearing/HearingSidebar.tsx
@@ -101,7 +101,7 @@ export const HearingSidebar = ({
101
setSenateChairName(senateName)
102
setMembers(memberData)
103
104
- console.log(docData)
+ console.log("data: ", docData)
105
}, [committeeCode, generalCourtNumber])
106
107
useEffect(() => {
pages/hearing/[hearingId].tsx
@@ -19,7 +19,7 @@ export default createPage<{ hearingId: number }>({
19
export const getServerSideProps: GetServerSideProps = async ctx => {
20
ctx.res.setHeader(
21
"Cache-Control",
22
- "public, s-maxage=604800, stale-while-revalidate=604800"
+ "public, s-maxage=10, stale-while-revalidate=10"
23
)
24
25
const locale = ctx.locale ?? ctx.defaultLocale ?? "en"
0 commit comments