From 39784dc9404b6094ae23ca290c919f5e9bbed2b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Mon, 11 Apr 2022 16:24:03 +0200 Subject: [PATCH] Remove unused argument MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- src/store/main.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/store/main.js b/src/store/main.js index d0e63cf0e..ffc859c63 100644 --- a/src/store/main.js +++ b/src/store/main.js @@ -497,9 +497,8 @@ export default new Vuex.Store({ dispatch('loadBoardById', acl.boardId) }) }, - async transferOwnership({ commit }, { boardId, owner, newOwner }) { + async transferOwnership({ commit }, { boardId, newOwner }) { await axios.put(generateUrl(`apps/deck/boards/${boardId}/transferOwner`), { - owner, newOwner, }) },