(fix): hot-reloading not working
Some checks failed
/ release (push) Has been cancelled
/ build-desktop (linux) (push) Has been cancelled
/ build-web (push) Has been cancelled
/ build-mobile (push) Has been cancelled

(fix): other stuff
This commit is contained in:
Alois 2026-07-06 23:25:48 +02:00
commit d9bfdb655d
4 changed files with 17 additions and 45 deletions

View file

@ -172,16 +172,6 @@ export default function Provider({ children }: { children: ReactNode }) {
return currentChatSecretState.value;
}, [currentChatSecretState, userIdValue]);
// Chat secret debugging
useEffect(() => {
if (!currentChatSecret) return;
const hex = Array.from(currentChatSecret, (b) =>
b.toString(16).padStart(2, "0"),
).join("");
log(3, "chat", "yellow", "Chat secret (sensitive)", hex);
}, [currentChatSecret]);
useEffect(() => {
if (!userIdValue) return;