Skip to content

Commit

Permalink
Reorder return values in user composable
Browse files Browse the repository at this point in the history
  • Loading branch information
ccali11 committed Sep 27, 2023
1 parent 30fe628 commit 097ccfe
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions apps/web/src/composables/user.ts
Original file line number Diff line number Diff line change
Expand Up @@ -211,11 +211,11 @@ export default function useUser() {

return {
user: readonly(user),
loadingSessionLogin: readonly(loadingSessionLogin),
loadingSessionLoginError: readonly(loadingSessionLoginError),
loadingSessionLogout: readonly(loadingSessionLogout),
loadingSessionLogoutError: readonly(loadingSessionLogoutError),
addAccountToUser,
loadingSessionLogin,
loadingSessionLoginError,
loadingSessionLogout,
loadingSessionLogoutError,
login,
logout,
updateUserAgreement,
Expand Down

0 comments on commit 097ccfe

Please sign in to comment.