File tree 6 files changed +8
-8
lines changed
templates/ords-remix-jwt-sample/app/components
6 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ function ConcertCard(props: ConcertCardProps) {
95
95
</ Link >
96
96
< div className = "flex items-center" >
97
97
< CalendarMonth />
98
- < p className = "font-sans font-extralight" >
98
+ < p className = "font-sans font-extralight" suppressHydrationWarning >
99
99
{ concertDateString }
100
100
</ p >
101
101
</ div >
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ function ConcertDetails(props: ConcertDetailsProps) {
50
50
< h1 className = "mb-5 text-justify text-xl font-bold" >
51
51
Additional Details
52
52
</ h1 >
53
- < p className = "mb-2 text-justify font-normal" >
53
+ < p className = "mb-2 text-justify font-normal" suppressHydrationWarning >
54
54
{ `Get ready for an unforgettable evening with ${ concert . items [ 0 ] . artist_name } !
55
55
Join us at ${ concert . items [ 0 ] . venue_name } on ${ concertDateString } for a night of incredible
56
56
music and electrifying performances.
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ function ConcertCard(props: ConcertCardProps) {
59
59
</ div >
60
60
< div className = "flex items-center" >
61
61
< CalendarMonth />
62
- < p className = "font-sans font-extralight" >
62
+ < p className = "font-sans font-extralight" suppressHydrationWarning >
63
63
{ concertDateString }
64
64
</ p >
65
65
</ div >
Original file line number Diff line number Diff line change @@ -128,9 +128,9 @@ function Timeline(props: TimelineProps) {
128
128
} ,
129
129
} }
130
130
>
131
- < StyledTab className = "w-1/3" label = { today . toDateString ( ) } { ...a11yProps ( 0 ) } />
132
- < StyledTab className = "w-1/3" label = { tomorrow . toDateString ( ) } { ...a11yProps ( 1 ) } />
133
- < StyledTab className = "w-1/3" label = { dayAfterTomorrow . toDateString ( ) } { ...a11yProps ( LAST_TAB ) } />
131
+ < StyledTab className = "w-1/3" label = { today . toDateString ( ) } { ...a11yProps ( 0 ) } suppressHydrationWarning />
132
+ < StyledTab className = "w-1/3" label = { tomorrow . toDateString ( ) } { ...a11yProps ( 1 ) } suppressHydrationWarning />
133
+ < StyledTab className = "w-1/3" label = { dayAfterTomorrow . toDateString ( ) } { ...a11yProps ( LAST_TAB ) } suppressHydrationWarning />
134
134
</ Tabs >
135
135
</ div >
136
136
</ Box >
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ function FollowedEventCard(props: FollowedEventCardProps) {
38
38
< div className = "mx-4" >
39
39
< div className = "mb-2 flex items-center" >
40
40
< CalendarMonth />
41
- < p className = "font-sans font-extralight" >
41
+ < p className = "font-sans font-extralight" suppressHydrationWarning >
42
42
{ concertDateString }
43
43
</ p >
44
44
</ div >
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ function ConcertResultCard(props: ConcertResultCardProps) {
49
49
</ h1 >
50
50
< div className = "flex items-center" >
51
51
< CalendarMonth />
52
- < p className = "font-sans font-extralight" >
52
+ < p className = "font-sans font-extralight" suppressHydrationWarning >
53
53
{ concertDateString }
54
54
</ p >
55
55
</ div >
You can’t perform that action at this time.
0 commit comments