Skip to content

Commit

Permalink
fix(notif): update matic wind down date (#967)
Browse files Browse the repository at this point in the history
  • Loading branch information
moo-onthelawn authored Aug 29, 2024
1 parent d1f1f03 commit e86ffe9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/hooks/useNotificationTypes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -471,14 +471,14 @@ export const notificationTypes: NotificationTypeConfig[] = [
const maticWindDownProposal = dynamicConfigs?.[StatsigDynamicConfigs.dcMaticProposalNotif];
const { contractLossMechanismLearnMore } = useURLConfigs();

const MATICWindDownProposalExpirationDate = '2024-09-04';
const MATICWindDownProposalExpirationDate = '2024-09-02T14:33:25.000Z';
const MATICWindDownDate = MATICWindDownProposalExpirationDate;
const MATICWindDownExpirationDate = '2024-10-04';
const MATICWindDownExpirationDate = '2024-10-04T23:59:59.000Z';
const MATICMarket = 'MATIC-USD';

const currentDate = new Date();
const outputDate = (
<Output tw="inline-block" type={OutputType.Date} value={MATICWindDownDate} />
<Output tw="inline-block" type={OutputType.DateTime} value={MATICWindDownDate} />
);

useEffect(() => {
Expand Down

0 comments on commit e86ffe9

Please sign in to comment.