(feat): add hotkeys
Some checks failed
/ build-web (push) Successful in 7m53s
/ build-desktop (linux) (push) Successful in 12m24s
/ release (push) Has been cancelled
/ build-mobile (push) Has been cancelled

This commit is contained in:
Alois 2026-08-02 01:10:05 +02:00
commit 85633a1c81
Signed by: alois
SSH key fingerprint: SHA256:GBzT2DXvAuGV9XIV5W3WrzVpjU54FThmxHXdbz95J24
27 changed files with 1014 additions and 33 deletions

View file

@ -927,6 +927,7 @@ export default function Provider({ children }: { children: ReactNode }) {
removeReaction,
clearLiveMessages,
chatSecret: currentChatSecret,
ownId,
userId: userIdValue,
inputBoxRef,
error,
@ -954,6 +955,7 @@ type contextType = {
removeReaction: (sendTime: number, reaction: string) => Promise<void>;
clearLiveMessages: () => void;
chatSecret: Uint8Array | null;
ownId: number;
userId: number;
inputBoxRef: React.RefObject<HTMLDivElement | null>;
error: string;