fix remaining eslint error

This commit is contained in:
DaneEveritt 2022-06-26 15:30:05 -04:00
parent dc84af9937
commit 922d75f471
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
15 changed files with 30 additions and 28 deletions

View file

@ -26,8 +26,7 @@ const user: UserStore = {
}),
updateUserData: action((state, payload) => {
// Limitation of Typescript, can't do much about that currently unfortunately.
// @ts-ignore
// @ts-expect-error limitation of Typescript, can't do much about that currently unfortunately.
state.data = { ...state.data, ...payload };
}),