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.
This commit is contained in:
Saurav Jain
2025-09-13 17:44:44 +05:30
committed by GitHub
parent e08a8764f2
commit da5ecf35fa
@@ -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';