diff --git a/commafeed-client/src/app/slices/entries.ts b/commafeed-client/src/app/slices/entries.ts index c73bf4e9..3e6e6f44 100644 --- a/commafeed-client/src/app/slices/entries.ts +++ b/commafeed-client/src/app/slices/entries.ts @@ -128,6 +128,7 @@ export const markAllEntries = createAsyncThunk { const endpoint = arg.sourceType === "category" ? client.category.markEntries : client.feed.markEntries await endpoint(arg.req) + thunkApi.dispatch(reloadEntries()) thunkApi.dispatch(reloadTree()) } )