We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44a9ebb commit c265894Copy full SHA for c265894
1 file changed
src/utils/versions.ts
@@ -56,8 +56,7 @@ const findLatest = async (project: Project): Promise<string> => {
56
// find the newest version with at least one non-alpha build
57
for (const version of versions) {
58
const builds = await fetchBuilds(project, version);
59
- if (builds.some((b) => true || b.channel !== "ALPHA")) {
60
- // TODO: Remove this, temporary change
+ if (builds.some((b) => b.channel !== "ALPHA")) {
61
return version;
62
}
63
0 commit comments