diff --git a/components/Header.tsx b/components/Header.tsx index 74d054c..08041dc 100644 --- a/components/Header.tsx +++ b/components/Header.tsx @@ -71,11 +71,11 @@ export const Header: React.FC = ({ onReset, onClearKey, hasKey, pro {hasKey && ( )} diff --git a/components/PrintableReport.tsx b/components/PrintableReport.tsx index 05a6550..1e963a1 100644 --- a/components/PrintableReport.tsx +++ b/components/PrintableReport.tsx @@ -12,7 +12,6 @@ export const PrintableReport: React.FC = ({ reports }) => id="printable-report-container" data-report={JSON.stringify(reports)} className="light bg-white text-slate-900 flex flex-col gap-8" - style={{ background: 'white' }} > {reports.map((report, idx) => (
diff --git a/components/ReportDisplay.tsx b/components/ReportDisplay.tsx index 84305ce..fa395d6 100644 --- a/components/ReportDisplay.tsx +++ b/components/ReportDisplay.tsx @@ -33,7 +33,7 @@ export const ReportDisplay: React.FC = ({ report }) => { const confidence = report?.confidence || 0; return ( -
+
{/* Cabeçalho (Header) */}
@@ -137,8 +137,8 @@ export const ReportDisplay: React.FC = ({ report }) => { 2. Propriedades Mecânicas
-
- +
+
@@ -191,8 +191,8 @@ export const ReportDisplay: React.FC = ({ report }) => { 3. Composição Química (%)
-
-
Propriedade
+
+
diff --git a/types/providers.ts b/types/providers.ts index 5c56d1d..560fe2f 100644 --- a/types/providers.ts +++ b/types/providers.ts @@ -1,5 +1,3 @@ -import { AIProvider } from './providers'; - export type AIProvider = 'gemini' | 'openai' | 'ollama' | 'openrouter'; export const OLLAMA_AUTO_DETECT_URLS = [
Elem.