42a9535761
The endless spinner issue was caused by lazy loading pages without a Suspense fallback. When users navigated to nevent URLs or other NIP-19 identifiers, the Suspense boundary had no fallback, causing a blank screen or stuck preloader. Changes: - Removed all lazy() imports from AppRouter - Removed Suspense boundary (no longer needed without lazy loading) - All pages now load eagerly for instant rendering - Kept the HexIdentifierPage loading skeleton fix from previous commit This ensures users see immediate visual feedback when loading any page, especially when navigating directly to event URLs via nevent identifiers.