- 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
209 B
TypeScript
10 lines
209 B
TypeScript
import { Suspense } from 'react'
|
|
import BibleReader from './reader'
|
|
|
|
export default function BiblePage() {
|
|
return (
|
|
<Suspense fallback={<div>Loading...</div>}>
|
|
<BibleReader />
|
|
</Suspense>
|
|
)
|
|
} |