refactor: window storage 이벤트 제거

This commit is contained in:
2026-02-09 15:19:39 +09:00
parent e98483d458
commit a7973705cf

View File

@@ -268,7 +268,7 @@ function useLocalPresence(roomKey: string, status: PresenceStatus) {
}
} catch {}
};
window.addEventListener("storage", onStorage);
// window.addEventListener("storage", onStorage);
return () => window.removeEventListener("storage", onStorage);
}