Bump prettier from 2.8.1 to 2.8.4 (#7023)

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Labhansh Agrawal <labhansh.agrawal@gmail.com>
This commit is contained in:
dependabot[bot] 2023-02-14 19:47:52 +05:30 committed by GitHub
parent a4734aff9d
commit 6b8271abff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

View file

@ -35,7 +35,7 @@ function Session(obj: Immutable.DeepPartial<session>) {
}
function deleteSession(state: sessionState, uid: string) {
return state.updateIn(['sessions'], (sessions: typeof state['sessions']) => {
return state.updateIn(['sessions'], (sessions: (typeof state)['sessions']) => {
const sessions_ = sessions.asMutable();
delete sessions_[uid];
return sessions_;