Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ndelangen committed Feb 16, 2024
1 parent 4a9a2cd commit c545fe1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/utils/index.ts
Expand Up @@ -56,7 +56,7 @@ export const getDescriptor = (
case 'ArrayExpression':
return property.value.elements.map((t) => {
if (t === null) {
throw new Error(`Unexpected descriptor element: ${t}`)
throw new Error(`Unexpected descriptor element: null`)
}
if (!['StringLiteral', 'Literal'].includes(t.type)) {
throw new Error(`Unexpected descriptor element: ${t.type}`)
Expand Down

0 comments on commit c545fe1

Please sign in to comment.