()
| 75 | } |
| 76 | |
| 77 | export default function PickPageWrapper() { |
| 78 | return ( |
| 79 | <Suspense fallback={<div style={styles.container}><p style={{ color: "rgba(255,255,255,0.6)" }}>Loading...</p></div>}> |
| 80 | <PickPage /> |
| 81 | </Suspense> |
| 82 | ); |
| 83 | } |
| 84 | |
| 85 | function PickPage() { |
| 86 | const searchParams = useSearchParams(); |
nothing calls this directly
no outgoing calls
no test coverage detected