Skip to content

Commit

Permalink
fix: Removes 'tbd.' statement from error-message (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
davelosert committed Sep 18, 2022
1 parent af3cc22 commit 0ffc417
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/errors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { CursorValue, PageInfoContext } from "./page-info";
const generateMessage = (path: string[], cursorValue: CursorValue): string =>
`The cursor at "${path.join(
","
)}" did not change its value "${cursorValue}" after a page transition. Please make sure your that your query is set up correctly - for more info see <tdb.>`;
)}" did not change its value "${cursorValue}" after a page transition. Please make sure your that your query is set up correctly.`;

class MissingCursorChange extends Error {
override name = "MissingCursorChangeError";
Expand Down

0 comments on commit 0ffc417

Please sign in to comment.