Skip to content

Commit

Permalink
remove duplicate
Browse files Browse the repository at this point in the history
  • Loading branch information
ap-justin committed Oct 3, 2024
1 parent 2712977 commit b6c956f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 11 deletions.
2 changes: 1 addition & 1 deletion src/pages/Admin/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ const linkGroup3: LinkGroup = {
title: "Fundraisers",
to: sidebarRoutes.funds,
icon: {
type: "HeartFill",
type: "Heart",
size: 21,
},
},
Expand Down
4 changes: 2 additions & 2 deletions src/pages/Funds/CreateFund/CreateFund.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@ export default withAuth(function CreateFund() {
fv.targetType === "none"
? `${0}`
: fv.targetType === "smart"
? "smart"
: `${+fv.fixedTarget}`,
? "smart"
: `${+fv.fixedTarget}`,
};

if (fv.expiration) fund.expiration = fv.expiration;
Expand Down
8 changes: 0 additions & 8 deletions src/pages/UserDashboard/routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,6 @@ export const linkGroups: LinkGroup[] = [
size: 21,
},
},
{
title: "My fundraisers",
to: routes.funds,
icon: {
type: "HeartFill",
size: 21,
},
},
],
},
];

0 comments on commit b6c956f

Please sign in to comment.