From 488e13d287150359e0e774078d9b3672a46d9e88 Mon Sep 17 00:00:00 2001 From: Pranav C Date: Tue, 22 Oct 2024 17:35:10 +0000 Subject: [PATCH] refactor: remove import statement since it already part of auto-import --- packages/nc-gui/composables/useData.ts | 1 - packages/nc-gui/composables/useLTARStore.ts | 1 - 2 files changed, 2 deletions(-) diff --git a/packages/nc-gui/composables/useData.ts b/packages/nc-gui/composables/useData.ts index a75e8502fd..595099e069 100644 --- a/packages/nc-gui/composables/useData.ts +++ b/packages/nc-gui/composables/useData.ts @@ -1,7 +1,6 @@ import type { ColumnType, LinkToAnotherRecordType, PaginatedType, RelationTypes, TableType, ViewType } from 'nocodb-sdk' import { UITypes, isCreatedOrLastModifiedByCol, isCreatedOrLastModifiedTimeCol } from 'nocodb-sdk' import type { ComputedRef, Ref } from 'vue' -import { extractPkFromRow } from '../utils/dataUtils' import type { CellRange } from '#imports' export function useData(args: { diff --git a/packages/nc-gui/composables/useLTARStore.ts b/packages/nc-gui/composables/useLTARStore.ts index 0b2a3f82ca..71575f78b8 100644 --- a/packages/nc-gui/composables/useLTARStore.ts +++ b/packages/nc-gui/composables/useLTARStore.ts @@ -7,7 +7,6 @@ import type { } from 'nocodb-sdk' import { RelationTypes, UITypes, dateFormats, parseStringDateTime, timeFormats } from 'nocodb-sdk' import type { ComputedRef, Ref } from 'vue' -import { extractPkFromRow } from '../utils/dataUtils' interface DataApiResponse { list: Record