@@ -29,6 +29,10 @@ export const Status = () => {
2929 const { user, updateUser } = useLoginContext ( ) ;
3030
3131 const confirmationDays = Math . floor ( settings . application . hoursToConfirm / 24 ) ;
32+ const fillProfileFormFrom = settings . application . fillProfileFormFrom ;
33+ const fillProfileFormTo = settings . application . fillProfileFormTo ;
34+ const acceptanceDeadline = settings . application . acceptanceDeadline ;
35+ const confirmSpotUntil = settings . application . confirmSpotUntil ;
3236 const isExpired = user == null ? false : isConfirmationExpired ( user ) ;
3337 const isNotAttending = isExpired || user ?. declined ;
3438 const deadline = user ?. confirmationExpiresAt ;
@@ -98,7 +102,7 @@ export const Status = () => {
98102 < InternalLink to = { Routes . ProfileForm } >
99103 profile form
100104 </ InternalLink >
101- , any time between < b > 01.03.2026 - 31.04.2026 </ b >
105+ , any time between < b > { fillProfileFormFrom } - { fillProfileFormTo } </ b >
102106 </ Text >
103107 </ >
104108 ) }
@@ -145,7 +149,7 @@ export const Status = () => {
145149 < >
146150 < Text style = { { fontSize : "1.15rem" } } >
147151 We will come back to you and send you a acceptance mail until{ " " }
148- < b > 01.05.2026 </ b > .
152+ < b > { acceptanceDeadline } </ b > .
149153 </ Text >
150154 </ >
151155 ) }
@@ -173,7 +177,7 @@ export const Status = () => {
173177 < >
174178 < Text style = { { fontSize : "1.15rem" } } >
175179 If you got accepted, you need to confirm your spot until{ " " }
176- < b > 08.05.2026 </ b >
180+ < b > { confirmSpotUntil } </ b >
177181 { user ?. admitted && (
178182 < >
179183 { " " }
0 commit comments