Skip to content

Commit

Permalink
2
Browse files Browse the repository at this point in the history
  • Loading branch information
RoyEJohnson committed Aug 15, 2023
1 parent 1222c18 commit 982f31b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ type HeadingArgs = {
function HeadingForExplorePage({subject, heading}: HeadingArgs) {
return (
<h1>
{subject?.subjectIcon && <img src={subject.subjectIcon} />}
{subject?.subjectIcon && <img src={subject.subjectIcon} alt='' />}
<span>{heading}</span>
</h1>
);
Expand Down
2 changes: 1 addition & 1 deletion src/app/pages/webinars/webinar-cards/latest-webinars.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ function UpcomingWebinar({data}: {data: Webinar}) {
<div className='card upcoming'>
<div className='dated-heading'>
<div className='date'>
<div className='day-of-month'>{data.start.getDay()}</div>
<div className='day-of-month'>{data.start.getDate()}</div>
<div className='month'>
{data.start.toLocaleString('en', {month: 'short'})}
</div>
Expand Down

0 comments on commit 982f31b

Please sign in to comment.