feat(ui-flow): dismiss-dm-rekey-notice IPC handler

This commit is contained in:
Raven Scott
2026-06-02 01:06:40 -04:00
parent 1db5361cd9
commit 0c1579739d
+5
View File
@@ -1866,6 +1866,11 @@ async function dispatchUiMessage (platform, msg, hooks = {}) {
pushState()
return true
}
if (t === 'dismiss-dm-rekey-notice') {
platform.clearDmSessionRekeyNotice()
pushState()
return true
}
if (t === 'start-dm-video') {
const out = await platform.startDmVideoCall()
send({ type: 'dm-video-call-started', ...out })