Skip to content

Commit 077bbc6

Browse files
Apply suggestions from code review
Co-authored-by: Pablo Pettinari <pettinarip@gmail.com>
1 parent c61f860 commit 077bbc6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/UpcomingEventsList.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,14 +104,14 @@ const UpcomingEventsList = () => {
104104
}
105105

106106
return (
107-
<div className="">
107+
<div>
108108
{Object.keys(monthGroupedEvents)
109109
?.slice(0, maxRange)
110110
?.map((month) => {
111111
const events = monthGroupedEvents[month]
112112
return (
113113
<div key={`events_in_${month}`}>
114-
<h3 className="py-8 text-2xl font-semibold">{month}</h3>
114+
<h3 className="py-8">{month}</h3>
115115
<div className="grid grid-cols-1 gap-5 md:grid-cols-2 lg:grid-cols-3">
116116
{events.map(
117117
(

0 commit comments

Comments
 (0)