Álvaro Valenzuela Valdes commited on
Commit ·
aa38935
1
Parent(s): 50666c5
Fix: Add missing useEffect import in AgentAnalysis
Browse files
frontend/components/AgentAnalysis.tsx
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
"use client";
|
| 2 |
|
| 3 |
-
import { useState } from "react";
|
| 4 |
import type { AnalysisResult, CompanyProfile, Tender } from "../lib/types";
|
| 5 |
import { uploadDocument } from "../lib/api";
|
| 6 |
|
|
|
|
| 1 |
"use client";
|
| 2 |
|
| 3 |
+
import { useState, useEffect } from "react";
|
| 4 |
import type { AnalysisResult, CompanyProfile, Tender } from "../lib/types";
|
| 5 |
import { uploadDocument } from "../lib/api";
|
| 6 |
|