- Add Suspense boundaries for useSearchParams in bible and search pages - Extract search page content to separate component for proper client-side rendering - Remove all Docker configuration files and temp documentation - Build now passes successfully without TypeScript or Suspense errors 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
10 lines
222 B
TypeScript
10 lines
222 B
TypeScript
import { Suspense } from 'react'
|
|
import SearchContent from './search-content'
|
|
|
|
export default function SearchPage() {
|
|
return (
|
|
<Suspense fallback={<div>Loading...</div>}>
|
|
<SearchContent />
|
|
</Suspense>
|
|
)
|
|
} |