diff --git a/lib/screens/myWallets/wallet_options.dart b/lib/screens/myWallets/wallet_options.dart
index 42e6f39172e67275ffdd3513be0cad74cd010247..543898c91df5fa87fad706405ee71a209a075680 100644
--- a/lib/screens/myWallets/wallet_options.dart
+++ b/lib/screens/myWallets/wallet_options.dart
@@ -457,8 +457,8 @@ class WalletOptions extends StatelessWidget {
               sub.currencyParameters['membershipRenewalPeriod']!,
             );
 
-            final twoMonthsBeforeExpiration = info.expireDate?.subtract(const Duration(days: 60));
-            final shouldHideButton = !info.canRenew || !(twoMonthsBeforeExpiration?.isBefore(DateTime.now()) ?? false);
+            final twentyDaysBeforeExpiration = info.expireDate?.subtract(const Duration(days: 20));
+            final shouldHideButton = !info.canRenew || !(twentyDaysBeforeExpiration?.isBefore(DateTime.now()) ?? false);
 
             if (shouldHideButton) return const SizedBox.shrink();