From 0546f25d554574cb5088cb4f5fd01c63d4306546 Mon Sep 17 00:00:00 2001 From: Eshwar Tangirala Date: Thu, 22 May 2025 20:13:16 -0400 Subject: [PATCH] Removed console.log --- commafeed-client/src/app/entries/thunks.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/commafeed-client/src/app/entries/thunks.ts b/commafeed-client/src/app/entries/thunks.ts index e7849f93..3a85f601 100644 --- a/commafeed-client/src/app/entries/thunks.ts +++ b/commafeed-client/src/app/entries/thunks.ts @@ -27,8 +27,6 @@ export const loadEntries = createAppAsyncThunk( const state = thunkApi.getState() const endpoint = getEndpoint(arg.source.type) const result = await endpoint(buildGetEntriesPaginatedRequest(state, arg.source, 0)) - console.log(arg.source.id) - if (arg.source.type === "feed") { thunkApi.dispatch(setHasNewEntries({ feedId: +arg.source.id, value: false })) }