Skip to content

Commit

Permalink
Merge branch 'feat/ticket-scanning-page' of https://github.com/UoaWDC…
Browse files Browse the repository at this point in the history
…C/auis-portal into feat/ticket-scanning-page
  • Loading branch information
gmat224 committed Dec 10, 2024
2 parents 7317990 + f409a60 commit 4b65fc5
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions web/src/screens/ExecScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,9 @@ export default function ExecScreen({ navbar }: { navbar: JSX.Element }) {
</h3>
<h2 className="text-tertiary-blue text-3xl font-bold">President</h2>
{errorExecutives ? (
<div className="py-10 text-white">There are no execs to display</div>
<div className="py-10 text-white">
There are no execs to display
</div>
) : (
<div className="flex flex-wrap justify-center">
{presidents?.map((exec) => (
Expand All @@ -139,7 +141,9 @@ export default function ExecScreen({ navbar }: { navbar: JSX.Element }) {
Executive Team
</h2>
{errorExecutives ? (
<div className="py-10 text-white">There are no execs to display</div>
<div className="py-10 text-white">
There are no execs to display
</div>
) : (
<div className="mb-5 flex flex-wrap justify-center">
{otherExecutives?.map((exec) => (
Expand Down

0 comments on commit 4b65fc5

Please sign in to comment.