From 391ff85a599217b6352a182a700c9dd095eca1b6 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Tue, 20 Feb 2024 20:51:55 -0300 Subject: [PATCH] Remove unnecessary comments in buildUtils.ts --- src/frontend/src/utils/buildUtils.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/frontend/src/utils/buildUtils.ts b/src/frontend/src/utils/buildUtils.ts index 4b828d0db..fabef977c 100644 --- a/src/frontend/src/utils/buildUtils.ts +++ b/src/frontend/src/utils/buildUtils.ts @@ -53,7 +53,6 @@ export async function buildVertices({ const buildResults: Array = []; // by not using Promise.all, we can update the UI as we build each vertex // and not wait for all of them to finish - // by not using await, we can start building the next vertex without waiting for the previous one to finish for (let i = 0; i < vertices.length; i += 1) { if (onBuildStart) onBuildStart(vertices[i]); for (const id of vertices[i]) {