Fix typo fetchinApi

This commit is contained in:
sallbet 2023-03-13 03:58:00 +03:00
parent a9fdcc32ed
commit 276ed7b1a2
Signed by: sallbet
GPG Key ID: 3C8A1BC17088B308

View File

@ -7,7 +7,7 @@ const initialState = {
fetchingChunks: 0,
fetchingChat: false,
fetchingPixel: false,
fetchinApi: false,
fetchingApi: false,
};
export default function fetching(
@ -24,10 +24,10 @@ export default function fetching(
}
case 'SET_API_FETCHING': {
const { fetching: fetchinApi } = action;
const { fetching: fetchingApi } = action;
return {
...state,
fetchinApi,
fetchingApi,
};
}