diff options
| author | Ivan Chen <ivan@tagg.id> | 2021-04-20 18:01:40 -0400 |
|---|---|---|
| committer | Ivan Chen <ivan@tagg.id> | 2021-04-20 18:01:40 -0400 |
| commit | bb1479dfcd8daad8ef2593d4ac65a0b1239a6139 (patch) | |
| tree | ca3d73f914ccacb232f54011b7d6299984e17140 /src/store/reducers | |
| parent | c4e76811cae6cf14d5cc8daed9317f808087ed77 (diff) | |
linted
Diffstat (limited to 'src/store/reducers')
| -rw-r--r-- | src/store/reducers/userBlockReducer.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/store/reducers/userBlockReducer.ts b/src/store/reducers/userBlockReducer.ts index 64bdda30..68b9a544 100644 --- a/src/store/reducers/userBlockReducer.ts +++ b/src/store/reducers/userBlockReducer.ts @@ -15,7 +15,7 @@ const userBlockSlice = createSlice({ state.blockedUsers.push(data); } else { state.blockedUsers = state.blockedUsers.filter( - (user) => user.username != data.username, + (user) => user.username !== data.username, ); } }, |
