()
| 55 | * so the deferral only happens once per app lifecycle — remounts skip the delay. |
| 56 | */ |
| 57 | export function useDeferredStartup(): boolean { |
| 58 | const ready = useDeferredLoad(); |
| 59 | if (ready) { |
| 60 | hasCompletedStartup = true; |
| 61 | } |
| 62 | return hasCompletedStartup || ready; |
| 63 | } |
no test coverage detected