From a9245c8f46df525b8e2cfe0b48f7a1b5d1363f00 Mon Sep 17 00:00:00 2001 From: Krishan <33421343+kfiven@users.noreply.github.com> Date: Sun, 19 Jul 2026 22:26:09 +1000 Subject: [PATCH] fix: update device management endpoint (#3022) When we added the endpoints were session but they got updated when the MSC is merged into spec. Ref: https://github.com/matrix-org/matrix-spec-proposals/pull/4191#discussion_r2376900233 --- src/app/hooks/useAccountManagement.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/hooks/useAccountManagement.ts b/src/app/hooks/useAccountManagement.ts index 5eafedc..aeccd58 100644 --- a/src/app/hooks/useAccountManagement.ts +++ b/src/app/hooks/useAccountManagement.ts @@ -4,9 +4,9 @@ export const useAccountManagementActions = () => { const actions = useMemo( () => ({ profile: 'org.matrix.profile', - sessionsList: 'org.matrix.sessions_list', - sessionView: 'org.matrix.session_view', - sessionEnd: 'org.matrix.session_end', + sessionsList: 'org.matrix.devices_list', + sessionView: 'org.matrix.device_view', + sessionEnd: 'org.matrix.device_delete', accountDeactivate: 'org.matrix.account_deactivate', crossSigningReset: 'org.matrix.cross_signing_reset', }),