mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 21:30:31 +00:00
feat(ManualJournals): Auto-increment.
fix(BillPayment): Validate the opened payment bills. fix(redux): presist redux state. fix(useRequestQuery): hook.
This commit is contained in:
@@ -2,13 +2,8 @@ import t from 'store/types';
|
||||
|
||||
export const setLogin = ({ user, token, tenant }) => ({
|
||||
type: t.LOGIN_SUCCESS,
|
||||
payload: {
|
||||
user,
|
||||
token,
|
||||
tenant,
|
||||
},
|
||||
payload: { user, token, tenant, },
|
||||
});
|
||||
|
||||
export const setLogout = () => ({
|
||||
type: t.LOGOUT,
|
||||
});
|
||||
export const setLogout = () => ({ type: t.LOGOUT });
|
||||
export const setStoreReset = () => ({ type: t.RESET });
|
||||
Reference in New Issue
Block a user