Álvaro Valenzuela Valdes commited on
Commit
26a90fc
·
1 Parent(s): 5f2460b

fix: add missing PurchaseOrder type import to api client

Browse files
Files changed (1) hide show
  1. frontend/lib/api.ts +1 -1
frontend/lib/api.ts CHANGED
@@ -1,4 +1,4 @@
1
- import type { AnalysisHistoryItem, AnalysisResult, CompanyProfile, Tender } from "./types";
2
 
3
  const API_BASE = process.env.NEXT_PUBLIC_API_BASE ?? "";
4
 
 
1
+ import type { AnalysisHistoryItem, AnalysisResult, CompanyProfile, Tender, PurchaseOrder } from "./types";
2
 
3
  const API_BASE = process.env.NEXT_PUBLIC_API_BASE ?? "";
4