We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ea089f commit 5332243Copy full SHA for 5332243
pages/sgho.page.tsx
@@ -31,6 +31,11 @@ const SavingsGhoWithdrawModal = dynamic(() =>
31
(module) => module.SavingsGhoWithdrawModal
32
)
33
);
34
+const StakeRewardClaimModal = dynamic(() =>
35
+ import('../src/components/transactions/StakeRewardClaim/StakeRewardClaimModal').then(
36
+ (module) => module.StakeRewardClaimModal
37
+ )
38
+);
39
40
export default function SavingsGho() {
41
const { openSavingsGhoDeposit, openSavingsGhoWithdraw } = useModalContext();
@@ -212,6 +217,7 @@ SavingsGho.getLayout = function getLayout(page: React.ReactElement) {
212
217
{/** Modals */}
213
218
<SavingsGhoDepositModal />
214
219
<SavingsGhoWithdrawModal />
220
+ <StakeRewardClaimModal />
215
221
{/** End of modals */}
216
222
</MainLayout>
223
0 commit comments