fix(WEB): Next.js 빌드 오류 수정

- xlsx 패키지 설치 (LocationListPanel.tsx에서 사용)
- createContract 중복 선언 제거 (actions.ts)
This commit is contained in:
2026-01-13 20:21:04 +09:00
parent f67832f228
commit e5851e91b8
2 changed files with 0 additions and 33 deletions

View File

@@ -408,25 +408,3 @@ export async function deleteContracts(ids: string[]): Promise<{
return { success: false, error: '일괄 삭제에 실패했습니다.' };
}
}
// 계약 생성 (변경 계약서 생성 포함)
export async function createContract(
_data: ContractFormData
): Promise<{
success: boolean;
data?: { id: string };
error?: string;
}> {
try {
await new Promise((resolve) => setTimeout(resolve, 500));
// TODO: 실제 API 연동 시 데이터 생성 로직
// 새 계약 ID 생성 (목업)
const newId = String(MOCK_CONTRACTS.length + 1);
return { success: true, data: { id: newId } };
} catch (error) {
console.error('createContract error:', error);
return { success: false, error: '계약 생성에 실패했습니다.' };
}
}