* Indeterminate loading overlay shown while a chat session is fetched from * the server (e.g. when opening an entry from chat history). It replaces the * misleading welcome screen during the load and lets the user cancel. * * The indicator is deliberately indeterminate: a session fetch reports n
| 14 | * fabricated. After a while we surface a reassurance hint. |
| 15 | */ |
| 16 | interface SessionLoadingViewProps { |
| 17 | onCancel?: () => void; |
| 18 | } |
| 19 | |
| 20 | // After this long with no response, reassure the user it is still working. |
| 21 | const STILL_LOADING_AFTER_MS = 8000; |
nothing calls this directly
no outgoing calls
no test coverage detected