Skip to content

Commit

Permalink
test(cost-limit): fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
c3b5aw committed Jan 12, 2023
1 parent abc1cd4 commit 63d0625
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/plugins/cost-limit/test/index.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const books = [
const resolvers = {
Query: {
books: () => books,
getBook: (title: String) => books.find((book) => book.title === title),
getBook: (title: string) => books.find((book) => book.title === title),
},
};

Expand Down

0 comments on commit 63d0625

Please sign in to comment.