🔥 chore(buildTrigger): remove unused TODO comment

The TODO comment regarding the implementation of progress has been removed as it is no longer relevant.
This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-06-21 14:55:22 -03:00
commit 0a1ceba765

View file

@ -86,12 +86,11 @@ export default function BuildTrigger({
return;
} else if (parsedData.log) {
// If the event is a log, log it
// TODO: implement the progress
setSuccessData({ title: parsedData.log });
setProgress(parsedData.progress);
} else {
// Otherwise, process the data
const isValid = processStreamResult(parsedData);
setProgress(parsedData.progress);
validationResults.push(isValid);
}
};