File tree Expand file tree Collapse file tree
src/2025/Home/components/Home Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -104,17 +104,19 @@ const Home: FC<React.PropsWithChildren<unknown>> = () => {
104104 La Farga, Hospitalet, Barcelona
105105 </ StyledSubtitle >
106106 </ StyledTitleContainer >
107- < motion . div
108- initial = { { opacity : 0 , scale : 0.9 } }
109- animate = { { opacity : 1 , scale : 1 } }
110- transition = { { duration : 0.8 , delay : 1.8 } }
111- >
112- < Countdown
113- date = { edition ?. startDay }
114- onComplete = { CountDownCompleted }
115- renderer = { TimeCountDown }
116- />
117- </ motion . div >
107+ { edition ?. showCountdown && (
108+ < motion . div
109+ initial = { { opacity : 0 , scale : 0.9 } }
110+ animate = { { opacity : 1 , scale : 1 } }
111+ transition = { { duration : 0.8 , delay : 1.8 } }
112+ >
113+ < Countdown
114+ date = { edition ?. startDay }
115+ onComplete = { CountDownCompleted }
116+ renderer = { TimeCountDown }
117+ />
118+ </ motion . div >
119+ ) }
118120 { edition ?. actionButtons && (
119121 < ActionButtons
120122 isTicketsDisabled = { isTicketsDisabled }
You can’t perform that action at this time.
0 commit comments