Assuming latest supported

This commit is contained in:
Joseph Garrone
2024-12-14 14:44:30 +01:00
parent 9185740d35
commit b1b6919395
2 changed files with 7 additions and 3 deletions

View File

@ -48,7 +48,8 @@ export const { getSupportedKeycloakMajorVersions } = (() => {
return n;
})
.filter(exclude(undefined));
.filter(exclude(undefined))
.sort((a, b) => b - a);
return cache;
}