chore: fix action type

This commit is contained in:
GleidsonDaniel 2021-12-22 09:28:21 -03:00
parent b5bda757bc
commit b56f6048d4
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ export function addUser(user: IUser): IAction {
export function removeUser(user: IUser): IAction {
return {
type: types.DEEP_LINKING,
type: types.SELECTED_USERS.REMOVE_USER,
user
};
}