From 8aa20a34363ffddfdee24f18fc80b27ea0ad5e1d Mon Sep 17 00:00:00 2001 From: martmull Date: Fri, 9 Feb 2024 10:39:01 +0100 Subject: [PATCH] Clean Mock Requests --- packages/twenty-front/src/testing/graphqlMocks.ts | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/packages/twenty-front/src/testing/graphqlMocks.ts b/packages/twenty-front/src/testing/graphqlMocks.ts index 0f9fa442855..9520c35cae2 100644 --- a/packages/twenty-front/src/testing/graphqlMocks.ts +++ b/packages/twenty-front/src/testing/graphqlMocks.ts @@ -26,18 +26,6 @@ export const graphqlMocks = { return HttpResponse.json({ data: { currentUser: mockedUsersData[0], - views: { - edges: mockedViewsData.map((view) => ({ - node: view, - cursor: null, - })), - pageInfo: { - hasNextPage: false, - hasPreviousPage: false, - startCursor: null, - endCursor: null, - }, - }, }, }); }),