[fix] TypeScript errors in manager/compatibility branch (#4625)

This commit is contained in:
Jin Yi
2025-07-31 15:34:03 +09:00
parent b9c1962eea
commit 114790fdca
6 changed files with 16 additions and 16 deletions

View File

@@ -9,7 +9,7 @@ import type { ConflictDetectionResult } from '@/types/conflictDetectionTypes'
// Mock getConflictMessage utility
vi.mock('@/utils/conflictMessageUtil', () => ({
getConflictMessage: vi.fn((conflict, t) => {
getConflictMessage: vi.fn((conflict) => {
return `${conflict.type}: ${conflict.current_value} vs ${conflict.required_value}`
})
}))