Browse Source
Merge pull request #635 from meriadec/develop
Bugfix account not saved at first
master
Meriadec Pillet
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/actions/accounts.js
|
@ -6,7 +6,7 @@ import db from 'helpers/db' |
|
|
|
|
|
|
|
|
export type AddAccount = Account => * |
|
|
export type AddAccount = Account => * |
|
|
export const addAccount: AddAccount = payload => ({ |
|
|
export const addAccount: AddAccount = payload => ({ |
|
|
type: 'ADD_ACCOUNT', |
|
|
type: 'DB:ADD_ACCOUNT', |
|
|
payload, |
|
|
payload, |
|
|
}) |
|
|
}) |
|
|
|
|
|
|
|
|