fix: update `isFetching` default value

pull/181/head
steven 3 years ago
parent 75d622f4a2
commit c97399a8ea

@ -11,7 +11,8 @@ const memoSlice = createSlice({
initialState: {
memos: [],
tags: [],
isFetching: false,
// isFetching flag should starts with true.
isFetching: true,
} as State,
reducers: {
setMemos: (state, action: PayloadAction<Memo[]>) => {

Loading…
Cancel
Save