Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
remove redundant comments
Signed-off-by: Adhitya Mamallan <adhitya.mamallan@uber.com>
  • Loading branch information
adhityamamallan committed Dec 17, 2025
commit c93cfaf383dbdb3bd2ae529f3eb753fb593ab1ca
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,6 @@ export default class WorkflowHistoryFetcher {
*/
fetchSingleNextPage(): void {
const state = this.getCurrentState();
// If the query is still pending, enable it to fetch the first page.
// Otherwise, fetch the next page if it is not already fetching and there are more pages.
if (state.status === 'pending') {
this.enableQuery();
} else if (!state.isFetchingNextPage && state.hasNextPage)
Expand Down