Skip to content

Commit 30450a3

Browse files
committed
fix style
1 parent 3e45fd8 commit 30450a3

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

frontend/src/components/ConcentrationTable.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,10 @@ const ConcentrationTable: React.FC<ConcentrationTableProps> = ({
5757
const hasVariation = highlightDifferences && new Set(signatures).size > 1;
5858

5959
return (
60-
<Table.Row key={substance} style={hasVariation ? { backgroundColor: VARIATION_HIGHLIGHT_COLOR } : {}}>
60+
<Table.Row
61+
key={substance}
62+
style={hasVariation ? { backgroundColor: VARIATION_HIGHLIGHT_COLOR } : {}}
63+
>
6164
<Table.Cell>
6265
{substance}
6366
{hasVariation && " ⚠️"}

frontend/src/pages/Compare.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ type SimulationComparison = {
1717
outputConcentrations: Record<string, number>;
1818
};
1919

20-
2120
const Compare: React.FC = () => {
2221
const [searchParams] = useSearchParams();
2322
const gridParam = searchParams.get("grids");

0 commit comments

Comments
 (0)