Files
openchamber/packages/ui/src/hooks/useSessionStatusBootstrap.ts
T

9 lines
378 B
TypeScript
Raw Normal View History

/**
* Session status bootstrap is now handled by the sync system's own bootstrap
* (sync/bootstrap.ts). This hook is retained as a no-op for call-site compat.
*/
// eslint-disable-next-line @typescript-eslint/no-unused-vars
export const useSessionStatusBootstrap = (_options?: { enabled?: boolean }) => {
// no-op — session_status is bootstrapped by sync child stores
2025-12-07 19:32:53 +02:00
};