File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -10,14 +10,18 @@ Proposals (CFP) and sharing your experience across a wide range of topics.
10
10
11
11
For any questions regarding the CFP process, please email
[email protected] .
12
12
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
+ }))
14
18
15
19
<Button
16
20
className = " !text-white"
17
21
href = " https://sessionize.com/graphqlconf-2024"
18
- disabled = { false }
22
+ disabled = { isExpired }
19
23
>
20
- { false ? " CFP Closed" : " Submit a Proposal" }
24
+ { isExpired ? " CFP Closed" : " Submit a Proposal" }
21
25
</Button >
22
26
23
27
> Please be aware that the Linux Foundation will now be utilizing Sessionize for CFP
You can’t perform that action at this time.
0 commit comments