Skip to content

Commit

Permalink
chore: allow delayMountingUntil to be optional
Browse files Browse the repository at this point in the history
  • Loading branch information
aklinker1 committed Sep 23, 2022
1 parent 9d256c5 commit a38ca06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/common/src/types/player-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ export const PlayerConfig = joi.object<ExternalPlayerConfig, true>({
apiEnv: joi.string().required(),
usageClient: joi.object().required(),
getUrl: joi.func().required(),
delayMountingUntil: joi.func().required(),
delayMountingUntil: joi.func().optional(),
});

/**
Expand Down

0 comments on commit a38ca06

Please sign in to comment.