Skip to content

Commit

Permalink
update console log messages
Browse files Browse the repository at this point in the history
  • Loading branch information
Abel Rodriguez committed Sep 21, 2023
1 parent 9b3073d commit 97afdd6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export const PipelineExecutions = ({
}

setIsRequestInProgress(true);
console.log('making a request...');
console.log("making a request...");

const resp = await gate.getExecutions(appName, {
pipelineName: pipeline.name,
Expand All @@ -103,7 +103,7 @@ export const PipelineExecutions = ({
});

setIsRequestInProgress(false);
console.log('request completed.');
console.log("request completed.");

setExecutions(resp);
setFilteredExecutions(filterExecutions(resp));
Expand Down

0 comments on commit 97afdd6

Please sign in to comment.