Skip to content

Commit c265894

Browse files
committed
chore: remove temporary version filter circumvention
1 parent 44a9ebb commit c265894

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/utils/versions.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,7 @@ const findLatest = async (project: Project): Promise<string> => {
5656
// find the newest version with at least one non-alpha build
5757
for (const version of versions) {
5858
const builds = await fetchBuilds(project, version);
59-
if (builds.some((b) => true || b.channel !== "ALPHA")) {
60-
// TODO: Remove this, temporary change
59+
if (builds.some((b) => b.channel !== "ALPHA")) {
6160
return version;
6261
}
6362
}

0 commit comments

Comments
 (0)