Skip to content

Commit

Permalink
fix(schema): fix validator text typo
Browse files Browse the repository at this point in the history
  • Loading branch information
skogsmaskin committed Dec 22, 2022
1 parent e892c62 commit 5e4c562
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -140,7 +140,7 @@ function validateLists(lists, visitorContext, problems) {
}

if (!list.value) {
problems.push(error(`Style #${index} is missing required "value" property`))
problems.push(error(`List #${index} is missing required "value" property`))
} else if (typeof list.value !== 'string') {
problems.push(
error(
Expand Down

1 comment on commit 5e4c562

@vercel
Copy link

@vercel vercel bot commented on 5e4c562 Dec 22, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

test-studio – ./

test-studio.sanity.build
test-studio-git-next.sanity.build

Please sign in to comment.