Skip to content

Commit

Permalink
fix(em): production ready check
Browse files Browse the repository at this point in the history
  • Loading branch information
SychO9 committed Nov 29, 2024
1 parent 22b74d0 commit f6e84a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extensions/package-manager/js/src/admin/utils/versions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export enum VersionStability {
}

export function isProductionReady(version: string): boolean {
return [VersionStability.Stable, VersionStability.RC].includes(stability(version));
return [VersionStability.Stable].includes(stability(version));
}

export function stability(version: string): VersionStability {
Expand Down

0 comments on commit f6e84a0

Please sign in to comment.