From f40135091f17e27a72a769aefc3862bdb0aa8d55 Mon Sep 17 00:00:00 2001 From: orangepro-ai <164942180+orangepro-ai@users.noreply.github.com> Date: Sun, 22 Feb 2026 11:56:15 -0800 Subject: [PATCH] Update initSessionManager with additional comment Added a comment to indicate a change in session management logic. --- src/SessionManager.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/SessionManager.ts b/src/SessionManager.ts index c053947..e3f586e 100644 --- a/src/SessionManager.ts +++ b/src/SessionManager.ts @@ -5,6 +5,7 @@ let storage: Storage = sessionStorage; /** * Initializes the session manager with the specified storage type. * @param storageType - The type of storage to use ('session' or 'local'). + * changing to check if app pickup */ export function initSessionManager(storageType: 'session' | 'local' = 'session'): void { if (typeof window === "undefined") return;