From de84a2b883129a0a65edb96690b8c6118b02f5ad Mon Sep 17 00:00:00 2001 From: pradeepkumar Date: Sun, 12 Apr 2026 16:27:36 +0530 Subject: [PATCH] refactor: clear description and helper text in hero section default content --- lib/features/home/presentation/widgets/hero_section.dart | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/features/home/presentation/widgets/hero_section.dart b/lib/features/home/presentation/widgets/hero_section.dart index 4c8bf16..4326b3d 100644 --- a/lib/features/home/presentation/widgets/hero_section.dart +++ b/lib/features/home/presentation/widgets/hero_section.dart @@ -11,10 +11,9 @@ import 'package:real_estate_mobile/features/home/presentation/providers/home_pro /// Default hero content — matches web's hardcoded defaultHeroContent fallback. const _defaultHero = HeroContent( headline: 'Discover verified, top-rated real estate professionals.', - description: 'Discover verified, top-rated real estate professionals', + description: '', ctaButtonText: 'See All', - helperText: - 'Connect with trusted local agents to explore homes, compare options, and make smarter decisions.', + helperText: '', ); class HeroSection extends ConsumerStatefulWidget {