From da5ecf35faee6d9af131e92321644336bee55383 Mon Sep 17 00:00:00 2001 From: Saurav Jain Date: Sat, 13 Sep 2025 17:44:44 +0530 Subject: [PATCH] fix: remove unused framer-motion import causing lint errors in ci (#14465) ### Summary This PR removes an unused `view` import from **framer-motion** in `useUpdateView.ts`. --- ### Context - The unused import was introduced in the recent commit to `main`. - It causes ESLint to fail, which blocks all new PRs from passing CI. ### Changes - Removed unused `view` import from `framer-motion`. ### Impact - Lint and CI should now pass again. - No runtime behavior is affected. --- packages/twenty-front/src/modules/views/hooks/useUpdateView.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/twenty-front/src/modules/views/hooks/useUpdateView.ts b/packages/twenty-front/src/modules/views/hooks/useUpdateView.ts index b1db12faf9..095e0d0eaf 100644 --- a/packages/twenty-front/src/modules/views/hooks/useUpdateView.ts +++ b/packages/twenty-front/src/modules/views/hooks/useUpdateView.ts @@ -2,7 +2,6 @@ import { useRecordIndexContextOrThrow } from '@/object-record/record-index/conte import { useRefreshCoreViewsByObjectMetadataId } from '@/views/hooks/useRefreshCoreViewsByObjectMetadataId'; import { type GraphQLView } from '@/views/types/GraphQLView'; import { convertUpdateViewInputToCore } from '@/views/utils/convertUpdateViewInputToCore'; -import { view } from 'framer-motion'; import { useRecoilCallback } from 'recoil'; import { isDefined } from 'twenty-shared/utils'; import { useUpdateCoreViewMutation } from '~/generated/graphql';