Skip to content

Commit 40fecfd

Browse files
committed
fix: timestamp for rendering
1 parent a551dd0 commit 40fecfd

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/modules/sGho/SGhoDepositPanel.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export const SGHODepositPanel: React.FC<SGHODepositPanelProps> = ({
6565
}) => {
6666
const { breakpoints } = useTheme();
6767
const xsm = useMediaQuery(breakpoints.up('xsm'));
68-
const now = useCurrentTimestamp(1);
68+
const now = useCurrentTimestamp(30);
6969
const { openSwitch, openStakeRewardsClaim } = useModalContext();
7070
const { currentAccount } = useWeb3Context();
7171
const trackEvent = useRootStore((store) => store.trackEvent);
@@ -181,8 +181,6 @@ export const SGHODepositPanel: React.FC<SGHODepositPanelProps> = ({
181181
openStakeRewardsClaim(Stake.gho, 'AAVE');
182182
};
183183

184-
console.log('stakeUserData?.userIncentivesToClaim', stakeUserData?.userIncentivesToClaim);
185-
186184
return (
187185
<>
188186
{currentAccount && (

0 commit comments

Comments
 (0)