Skip to content

Commit 21b8e4e

Browse files
committed
update cfp expiration date
1 parent 1770b24 commit 21b8e4e

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

src/app/conf/2024/speak/index.mdx

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,18 @@ Proposals (CFP) and sharing your experience across a wide range of topics.
1010

1111
For any questions regarding the CFP process, please email [email protected].
1212

13-
export const isExpired = new Date() > new Date("2024/05/22 12:00")
13+
export const isExpired = new Date(new Date().toLocaleString("en-US", {
14+
timeZone: "America/Los_Angeles"
15+
})) > new Date(new Date("2024/06/02 23:50").toLocaleString("en-US", {
16+
timeZone: "America/Los_Angeles"
17+
}))
1418

1519
<Button
1620
className="!text-white"
1721
href="https://sessionize.com/graphqlconf-2024"
18-
disabled={false}
22+
disabled={isExpired}
1923
>
20-
{false ? "CFP Closed" : "Submit a Proposal"}
24+
{isExpired ? "CFP Closed" : "Submit a Proposal"}
2125
</Button>
2226

2327
> Please be aware that the Linux Foundation will now be utilizing Sessionize for CFP

0 commit comments

Comments
 (0)