Skip to content

Commit

Permalink
update icons
Browse files Browse the repository at this point in the history
  • Loading branch information
ap-justin committed Sep 4, 2024
1 parent 9ca1112 commit 7292c1f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/pages/Funds/EditFund/EditFund.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export default withAuth(function EditFund({ user }) {
if (!user.funds.includes(fundId)) {
return (
<div className="grid content-start place-items-center pt-40 pb-20">
<Icon type="ExclamationCircleFill" size={80} className="text-red" />
<Icon type="Info" size={80} className="text-red" />
<p className="text-xl mt-8">Unauthorized</p>
</div>
);
Expand All @@ -40,7 +40,7 @@ export default withAuth(function EditFund({ user }) {
if (!data.active) {
return (
<div className="grid content-start place-items-center pt-40 pb-20">
<Icon type="ExclamationCircleFill" size={80} className="text-red" />
<Icon type="Info" size={80} className="text-red" />
<p className="text-xl mt-8">This fund is already closed</p>
</div>
);
Expand Down
2 changes: 1 addition & 1 deletion src/pages/UserDashboard/routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export const linkGroups: LinkGroup[] = [
title: "My fundraisers",
to: routes.funds,
icon: {
type: "HeartFill",
type: "Heart",
size: 21,
},
},
Expand Down

0 comments on commit 7292c1f

Please sign in to comment.