Skip to content

Commit

Permalink
Format code with Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Dec 10, 2024
1 parent dd6fc7e commit f409a60
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 f409a60

Please sign in to comment.