diff --git a/src/pages/Account/AccountConnections.vue b/src/pages/Account/AccountConnections.vue index 4acdb597f..f248685ae 100644 --- a/src/pages/Account/AccountConnections.vue +++ b/src/pages/Account/AccountConnections.vue @@ -37,7 +37,7 @@ const navigate = (id) => router.push({ name: 'AccountSummary', params: { id } }) const killSession = async (id) => { try { - await axios.delete(`AccessTokens/${id}`); + await axios.delete(`${urlPath}/${id}`); paginateRef.value.fetch(); notify(t('Session killed'), 'positive'); } catch (error) { @@ -50,7 +50,7 @@ const killSession = async (id) => {
{