Skip to content

Commit d17317e

Browse files
committed
Fix typographical errors in welcome messages by replacing apostrophes with HTML entities in the WelcomeSection and TodaysSchedule components.
1 parent 432cfa4 commit d17317e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

devconnect-app/src/app/dashboard-sections.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export function WelcomeSection() {
2727
</div>
2828
</div>
2929
<div className="text-xl font-bold">{dummyEmail}</div>
30-
<div>Welcome to the Ethereum World's Fair! </div>
30+
<div>Welcome to the Ethereum World&apos;s Fair! </div>
3131
</div>
3232
);
3333
}
@@ -44,7 +44,7 @@ export function TodaysSchedule({ atprotoEvents }: { atprotoEvents: any[] }) {
4444
return (
4545
<div className="flex flex-col items-start justify-start gap-2 p-4 pt-3 bg-white border border-[rgba(234,234,234,1)]">
4646
<div className="flex w-full items-center justify-between gap-2">
47-
<p className="font-semibold">Today's Schedule</p>
47+
<p className="font-semibold">Today&apos;s Schedule</p>
4848
{/* <p className="text-xs">{moment().format('dddd, D MMMM')}</p> */}
4949
</div>
5050
<p className="text-xs mb-2">

0 commit comments

Comments
 (0)