fix: resolve ESLint errors — remove unused imports and dead code

This commit is contained in:
Ryan Moon
2026-04-01 20:18:13 -05:00
parent c3de66e554
commit 0f8aff9426
9 changed files with 7 additions and 28 deletions

View File

@@ -1,4 +1,4 @@
import { eq, and, count, desc, lte, sql, type Column } from 'drizzle-orm'
import { eq, and, count, desc, sql, type Column } from 'drizzle-orm'
import type { PostgresJsDatabase } from 'drizzle-orm/postgres-js'
import { products, inventoryUnits, priceHistory as priceHistoryTable, productSuppliers, suppliers, stockReceipts } from '../db/schema/inventory.js'
import { ValidationError } from '../lib/errors.js'