Fix action type for unfollowHashtag (#18924)
This commit is contained in:
		
							parent
							
								
									66b8abf218
								
							
						
					
					
						commit
						5d70a16a14
					
				@ -75,18 +75,18 @@ export const unfollowHashtag = name => (dispatch, getState) => {
 | 
				
			|||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export const unfollowHashtagRequest = name => ({
 | 
					export const unfollowHashtagRequest = name => ({
 | 
				
			||||||
  type: HASHTAG_FETCH_REQUEST,
 | 
					  type: HASHTAG_UNFOLLOW_REQUEST,
 | 
				
			||||||
  name,
 | 
					  name,
 | 
				
			||||||
});
 | 
					});
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export const unfollowHashtagSuccess = (name, tag) => ({
 | 
					export const unfollowHashtagSuccess = (name, tag) => ({
 | 
				
			||||||
  type: HASHTAG_FETCH_SUCCESS,
 | 
					  type: HASHTAG_UNFOLLOW_SUCCESS,
 | 
				
			||||||
  name,
 | 
					  name,
 | 
				
			||||||
  tag,
 | 
					  tag,
 | 
				
			||||||
});
 | 
					});
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export const unfollowHashtagFail = (name, error) => ({
 | 
					export const unfollowHashtagFail = (name, error) => ({
 | 
				
			||||||
  type: HASHTAG_FETCH_FAIL,
 | 
					  type: HASHTAG_UNFOLLOW_FAIL,
 | 
				
			||||||
  name,
 | 
					  name,
 | 
				
			||||||
  error,
 | 
					  error,
 | 
				
			||||||
});
 | 
					});
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user