Skip to content

Commit

Permalink
refactor: add max 10 origins
Browse files Browse the repository at this point in the history
Signed-off-by: Bucur David <[email protected]>
  • Loading branch information
bucurdavid committed Jan 16, 2024
1 parent c0eee84 commit 7506fcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ export function validateSpecificParamsViewData(params: {
params.mvxNativeAuthOrigins !== undefined &&
Array.isArray(params.mvxNativeAuthOrigins) &&
params.mvxNativeAuthOrigins.length > 0 &&
params.mvxNativeAuthOrigins.length < 5
params.mvxNativeAuthOrigins.length < 10
) {
mvxNativeAuthOriginsIsValid = true;
} else {
Expand Down

0 comments on commit 7506fcc

Please sign in to comment.