Skip to content

Commit

Permalink
Merge branch 'main' into prod
Browse files Browse the repository at this point in the history
  • Loading branch information
ItsSammyM committed Jan 18, 2025
2 parents 1d8fdff + d3ed4f9 commit ed2ff07
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ function parseSettings(json: NonNullable<any>): ParseResult<Settings> {
}
}

if (json.format !== "v3") {
return Failure("settingsFormatNotV3", json);
if (json.format !== "v4") {
return Failure("settingsFormatNotV4", json);
}

const roleSpecificMenus = parseRoleSpecificMenus(json.roleSpecificMenus);
Expand Down

0 comments on commit ed2ff07

Please sign in to comment.