fix: update isFetching default value

This commit is contained in:
steven 2022-08-28 00:30:26 +08:00
parent 75d622f4a2
commit c97399a8ea

View File

@ -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[]>) => {