@@ -29,14 +29,22 @@ export const Status = () => {
2929 const { user, updateUser } = useLoginContext ( ) ;
3030
3131 const confirmationDays = Math . floor ( settings . application . hoursToConfirm / 24 ) ;
32- const fillProfileFormFrom = dateToString (
33- settings . application . fillProfileFormFrom ,
32+
33+ const allowProfileFormFrom = dateToString (
34+ settings . application . allowProfileFormFrom ,
35+ ) ;
36+ const allowProfileFormUntil = dateToString (
37+ settings . application . allowProfileFormUntil ,
3438 ) ;
35- const fillProfileFormTo = dateToString ( settings . application . fillProfileFormTo ) ;
3639 const acceptanceDeadline = dateToString (
3740 settings . application . acceptanceDeadline ,
3841 ) ;
39- const confirmSpotUntil = dateToString ( settings . application . confirmSpotUntil ) ;
42+ const confirmSpotUntil = dateToString (
43+ settings . application . confirmSpotUntil ,
44+ ) ;
45+
46+ console . log ( settings . application ) ;
47+
4048 const isExpired = user == null ? false : isConfirmationExpired ( user ) ;
4149 const isNotAttending = isExpired || user ?. declined ;
4250 const deadline = user ?. confirmationExpiresAt ;
@@ -106,7 +114,7 @@ export const Status = () => {
106114 < InternalLink to = { Routes . ProfileForm } >
107115 profile form
108116 </ InternalLink >
109- , any time between < b > { fillProfileFormFrom } - { fillProfileFormUntil } </ b >
117+ , any time between < b > { allowProfileFormFrom } - { allowProfileFormUntil } </ b >
110118 </ Text >
111119 </ >
112120 ) }
0 commit comments