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 2e7d481 commit 0ba52e0Copy full SHA for 0ba52e0
components/hearing/HearingSidebar.tsx
@@ -96,6 +96,8 @@ export const HearingSidebar = ({
96
setHouseChairName(houseName)
97
setSenateChairName(senateName)
98
setMembers(memberData)
99
+
100
+ console.log(docData)
101
}, [committeeCode, generalCourtNumber])
102
103
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=10, stale-while-revalidate=59"
+ "public, s-maxage=604800, stale-while-revalidate=604800"
23
)
24
25
const locale = ctx.locale ?? ctx.defaultLocale ?? "en"
0 commit comments