Skip to content

Commit

Permalink
remove default
Browse files Browse the repository at this point in the history
  • Loading branch information
jcheese1 committed Aug 2, 2024
1 parent 60873ab commit b0d3219
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions app/routes/team.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { CTAButton } from "~/components/Button";
import { DiscordIcon, XIcon } from "~/components/Icons";
import classNames from "clsx";
import TreasureTeamImg from "@/img/TreasureTeam.webp";
import DefaultPfpImg from "@/img/pfps/default.png";

import type { HeadersFunction, MetaFunction } from "@remix-run/node";
import type { RootLoaderData } from "~/root";
Expand Down Expand Up @@ -39,7 +38,7 @@ const TeamCard = ({ member }: { member: Member }) => {
<div className="flex flex-col rounded-lg border-2 border-honey-300 bg-honey-50 px-4 py-3 md:px-9 md:py-8">
<img
className="w-full bg-honey-100 object-contain"
src={member.image ?? DefaultPfpImg}
src={member.image}
alt={member.name}
/>
<div
Expand Down

0 comments on commit b0d3219

Please sign in to comment.