diff --git a/src/App.tsx b/src/App.tsx index 85cd47e..4ec4e27 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -664,7 +664,7 @@ export default function App() {
{rows.length === 0 && (
-
Drop files here or use the buttons below.
+
Drop files here or use the buttons below.
)} {rows.map((row) => ( @@ -712,7 +712,7 @@ export default function App() { {rephraseVariants.length > 0 && (
- Rephrase variants + Rephrase variants
{rephraseVariants.map((variant) => (
{variant.label}
-
+
{variant.text.slice(0, 120)}{variant.text.length > 120 ? "..." : ""}
@@ -805,7 +805,7 @@ export default function App() { style={{ position: "fixed", inset: 0, - background: "rgba(31, 26, 22, 0.45)", + background: "rgba(69, 10, 10, 0.28)", display: "grid", placeItems: "center", zIndex: 10, @@ -813,13 +813,14 @@ export default function App() { >

Open Session

@@ -829,12 +830,12 @@ export default function App() { ))}
@@ -850,7 +851,7 @@ export default function App() { style={{ position: "fixed", inset: 0, - background: "rgba(31, 26, 22, 0.45)", + background: "rgba(69, 10, 10, 0.28)", display: "grid", placeItems: "center", zIndex: 10, @@ -858,13 +859,14 @@ export default function App() { >

Prior Art Results

@@ -872,7 +874,7 @@ export default function App() { Queries
    {priorData.queries.map((q) => ( -
  • +
  • {q}
  • ))} @@ -881,14 +883,14 @@ export default function App() { {priorData.results.length === 0 &&

    No results found.

    }
    {priorData.results.map((r) => ( -
    +
    {r.title || r.url}
    -
    {r.url}
    +
    {r.url}
    {r.snippet && ( -
    {r.snippet}
    +
    {r.snippet}
    )} {typeof r.score === "number" && ( -
    Score: {r.score.toFixed(3)}
    +
    Score: {r.score.toFixed(3)}
    )}
    ))}