diff --git a/src/errors.ts b/src/errors.ts index 2900a0a..41d9030 100644 --- a/src/errors.ts +++ b/src/errors.ts @@ -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 `; + )}" 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";