Drop unused AccountUserStore.signature

Drop debounce from AccountUserStore.loading
This commit is contained in:
the-djmaze 2023-10-31 01:36:41 +01:00
parent 36789bd3b5
commit 1a5ff4772d

View file

@ -2,11 +2,9 @@ import { addObservablesTo, koArrayWithDestroy } from 'External/ko';
export const AccountUserStore = koArrayWithDestroy();
AccountUserStore.loading = ko.observable(false).extend({ debounce: 100 });
AccountUserStore.getEmailAddresses = () => AccountUserStore.map(item => item.email);
addObservablesTo(AccountUserStore, {
email: '',
signature: ''
loading: false
});