From 0ffc417d15118aa37f250bcb977de7f9457cd964 Mon Sep 17 00:00:00 2001 From: David Losert Date: Sun, 18 Sep 2022 20:08:38 +0200 Subject: [PATCH] fix: Removes 'tbd.' statement from error-message (#12) --- src/errors.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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";