Skip to content

Commit

Permalink
Merge pull request #274 from zing-rsa/fix/errorLog
Browse files Browse the repository at this point in the history
fix(): fix error log
  • Loading branch information
alessandrokonrad authored Feb 9, 2025
2 parents 353c855 + 4f88a8b commit 2d6bdb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/plutus/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ export const Data = {
if (title[0] !== title[0].toLowerCase()) {
throw new Error(
`Object requires lower case properties: found ${title}, expected ${
title[0].toUpperCase() + title.slice(1)
title[0].toLowerCase() + title.slice(1)
}`,
);
}
Expand Down

0 comments on commit 2d6bdb0

Please sign in to comment.