Skip to content

Commit 5332243

Browse files
authored
fix: claim rewards (#2640)
1 parent 1ea089f commit 5332243

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

pages/sgho.page.tsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,11 @@ const SavingsGhoWithdrawModal = dynamic(() =>
3131
(module) => module.SavingsGhoWithdrawModal
3232
)
3333
);
34+
const StakeRewardClaimModal = dynamic(() =>
35+
import('../src/components/transactions/StakeRewardClaim/StakeRewardClaimModal').then(
36+
(module) => module.StakeRewardClaimModal
37+
)
38+
);
3439

3540
export default function SavingsGho() {
3641
const { openSavingsGhoDeposit, openSavingsGhoWithdraw } = useModalContext();
@@ -212,6 +217,7 @@ SavingsGho.getLayout = function getLayout(page: React.ReactElement) {
212217
{/** Modals */}
213218
<SavingsGhoDepositModal />
214219
<SavingsGhoWithdrawModal />
220+
<StakeRewardClaimModal />
215221
{/** End of modals */}
216222
</MainLayout>
217223
);

0 commit comments

Comments
 (0)