Skip to content

Commit

Permalink
fix(gatsby-plugin-manifest): Fix or Joi assertion (#29242)
Browse files Browse the repository at this point in the history
  • Loading branch information
LekoArts committed Jan 28, 2021
1 parent fb38f8a commit 844ac84
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions packages/gatsby-plugin-manifest/src/pluginOptionsSchema.js
Expand Up @@ -93,13 +93,10 @@ export default function pluginOptionSchema({ Joi }) {
platform: platform.required(),
url: Joi.string()
.uri()
.required()
.description(`The URL at which the application can be found.`),
id: Joi.string()
.required()
.description(
`The ID used to represent the application on the specified platform.`
),
id: Joi.string().description(
`The ID used to represent the application on the specified platform.`
),
min_version: Joi.string()
.optional()
.description(
Expand Down

0 comments on commit 844ac84

Please sign in to comment.