Skip to content

Commit

Permalink
Merge pull request #48 from nairobi-gophers/date-correction
Browse files Browse the repository at this point in the history
corrected date
  • Loading branch information
marvinhosea authored Sep 12, 2024
2 parents 1a57b0e + b4b9a70 commit 03f3baa
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/Agenda.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const Sessions = () => {
}
</div>}
{(activeDay == 'all' || activeDay == '19th') && <div className="mt-8">
<p className="text-left text-lg font-semibold">Fri Oct 19</p>
<p className="text-left text-lg font-semibold">Sat Oct 19</p>
{
activeSessions.map(session => {
if (session.day == '19th') {
Expand Down
6 changes: 6 additions & 0 deletions frontend/src/components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,12 @@ const Navbar: React.FC = () => {
>
Home
</NavLink>
<NavLink
to="/agenda"
className={({ isActive }) => `border-b-2 w-fit p-3 ${isActive ? 'border-secondary' : 'border-white'}`}
>
Agenda
</NavLink>
<NavLink
to="/speakers"
className={({ isActive }) => `border-b-2 w-fit p-3 ${isActive ? 'border-secondary' : 'border-white'}`}
Expand Down

0 comments on commit 03f3baa

Please sign in to comment.