Skip to content

Commit

Permalink
refactor: remove debug logs and local dev tools
Browse files Browse the repository at this point in the history
  • Loading branch information
NandyBa committed Mar 5, 2025
1 parent b58288a commit 69590c6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion src/components/incentives/IncentivesButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ export const MeritIncentivesButton = (params: {
protocolAction?: ProtocolAction;
}) => {
const [open, setOpen] = useState(false);
console.log({ symbol: params.symbol });
const { data: meritIncentives } = useMeritIncentives(params);

if (!meritIncentives) {
Expand Down
3 changes: 1 addition & 2 deletions src/hooks/useMeritIncentives.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,7 @@ export type ExtendedReserveIncentiveResponse = ReserveIncentiveResponse & {
customForumLink: string;
};

// const url = 'https://apps.aavechan.com/api/merit/aprs';
const url = 'http://localhost:3001/api/merit/aprs'; // for local testing
const url = 'https://apps.aavechan.com/api/merit/aprs';

export type MeritReserveIncentiveData = Omit<ReserveIncentiveResponse, 'incentiveAPR'> & {
action: MeritAction;
Expand Down

0 comments on commit 69590c6

Please sign in to comment.