2026-03-31 18:47:00 +03:00
|
|
|
/**
|
|
|
|
|
* 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
|
|
|
};
|