refactor: simplify assignment

This commit is contained in:
Daniel Roe 2022-12-20 14:44:19 +00:00
parent 11731ee280
commit ab4321ad33
No known key found for this signature in database
GPG key ID: 22D5008E4F5D9B55

View file

@ -19,9 +19,8 @@ const instances = useLocalStorage<Record<string, Instance>>(STORAGE_KEY_SERVERS,
const currentUserId = useLocalStorage<string>(STORAGE_KEY_CURRENT_USER, mock ? mock.user.account.id : '')
export const currentUser = computed<UserLogin | undefined>(() => {
let user: UserLogin | undefined
if (currentUserId.value) {
user = users.value.find(user => user.account?.id === currentUserId.value)
const user = users.value.find(user => user.account?.id === currentUserId.value)
if (user)
return user
}