Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
thalia
ThaliApp
Commits
d1d79da8
Commit
d1d79da8
authored
Sep 23, 2017
by
Sébastiaan Versteeg
Browse files
Merge branch 'fix/remove-unnecessary-log-statements' into 'master'
Remove unnecessary log statements See merge request
!61
parents
b2187c1a
c325a7e6
Changes
2
Hide whitespace changes
Inline
Side-by-side
app/reducers/session.js
View file @
d1d79da8
...
...
@@ -9,7 +9,6 @@ const initialState = {
};
export
default
function
session
(
state
=
initialState
,
action
=
{})
{
console
.
log
(
state
);
switch
(
action
.
type
)
{
case
loginActions
.
SUCCESS
:
return
{
...
...
app/sagas/login.js
View file @
d1d79da8
...
...
@@ -55,7 +55,6 @@ const login = function* login(action) {
yield
delay
(
2000
);
yield
put
(
loginActions
.
reset
());
}
catch
(
error
)
{
console
.
log
(
error
);
yield
put
(
loginActions
.
failure
());
yield
delay
(
2000
);
yield
put
(
loginActions
.
reset
());
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment