Skip to content

Commit a555412

Browse files
committed
chore: delete console code
1 parent 8e730e4 commit a555412

File tree

3 files changed

+0
-5
lines changed

3 files changed

+0
-5
lines changed

apps/nestjs-backend/src/features/table/table-index.service.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,6 @@ export class TableIndexService {
192192
const index = await this.getActivatedTableIndexes(tableId);
193193
const sql = this.dbProvider.searchIndex().createSingleIndexSql(dbTableName, fieldInstance);
194194
if (index.includes(TableIndex.search) && sql) {
195-
console.log('createSearchFieldSingleIndex:sql', sql);
196195
await this.prismaService.txClient().$executeRawUnsafe(sql);
197196
}
198197
}

apps/nextjs-app/src/features/app/blocks/chart-v2/core/utils.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,9 @@ export const getFieldRollupKeyByFieldName = (fields: IFieldVo[], name: string, r
4040
const field = fields.find((field) => field.name === name);
4141

4242
if (!field) {
43-
console.log('tttttttttttt 2333333');
4443
return null;
4544
}
4645

47-
console.log('tttttttttttt', getFieldRollupKey(field.id, rollup));
4846
return getFieldRollupKey(field.id, rollup);
4947
};
5048

apps/nextjs-app/src/features/app/blocks/view/grid/hooks/useSelectionOperation.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -238,8 +238,6 @@ export const useSelectionOperation = (props?: {
238238

239239
const { cellValues } = getCellPasteInfo(e);
240240

241-
console.log('cellValuescellValues', cellValues);
242-
243241
const pasteRecordLength = cellValues?.length ?? 0;
244242

245243
if (pasteRecordLength >= 10) {

0 commit comments

Comments
 (0)