Removed log from hashtags reducer
• Removed: - log from hashtags reducer
This commit is contained in:
parent
c33013cccf
commit
daca5321e2
|
@ -12,7 +12,6 @@ const initialState = ImmutableMap()
|
||||||
export default function hashtags(state = initialState, action) {
|
export default function hashtags(state = initialState, action) {
|
||||||
switch (action.type) {
|
switch (action.type) {
|
||||||
case HASHTAG_FETCH_SUCCESS:
|
case HASHTAG_FETCH_SUCCESS:
|
||||||
console.log("HASHTAG_FETCH_SUCCESS:", action)
|
|
||||||
return importHashtag(state, action.hashtag)
|
return importHashtag(state, action.hashtag)
|
||||||
default:
|
default:
|
||||||
return state
|
return state
|
||||||
|
|
Loading…
Reference in New Issue