diff --git a/src/stores/acctMgmt.ts b/src/stores/acctMgmt.ts index 150f7c2..7fcc49b 100644 --- a/src/stores/acctMgmt.ts +++ b/src/stores/acctMgmt.ts @@ -126,7 +126,6 @@ export const useAcctMgmtStore = defineStore('acctMgmtStore', { */ async moveCurrentLoginUserToFirstRow(fetchedUserList: User[]): Promise { const loginStore = useLoginStore(); - await loginStore.getUserData(); const loginUserData:User = loginStore.userData; const foundLoginUserIndex = fetchedUserList.findIndex(user => user.username === loginUserData.username); fetchedUserList.unshift(fetchedUserList.splice(foundLoginUserIndex, 1)[0]);