Skip to content

Commit 1789bcf

Browse files
committed
[RELEASE] Version v0.0.5. Fixed incorrect action capatalization. Matter is not automatically added now. Basic profile state management added.
1 parent 8ceb59f commit 1789bcf

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

generators/app/templates/app/actions/profile.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ export function signup(signupData) {
5757
dispatch(attemptSignup(signupData));
5858
//Call to API or use middleware here
5959
let fakeProfileData = {
60-
username: loginData.username || 'Guest',
61-
email: loginData.email || '[email protected]',
60+
username: signupData.username || 'Guest',
61+
email: signupData.email || '[email protected]',
6262
};
6363
receiveSignup(fakeProfileData);
6464
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "generator-webpack-redux-react",
3-
"version": "0.0.4",
3+
"version": "0.0.5",
44
"description": "Yeoman generator for React/Redux projects.",
55
"license": "MIT",
66
"main": "generators/app/index.js",

0 commit comments

Comments
 (0)