Skip to content

Commit f16ab1b

Browse files
committed
Fix wrong graph type labels: switch them
1 parent 2affaa9 commit f16ab1b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/ui/screens/benefit-page/components/MermaidRulesGraph.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ export default function MermaidRulesGraph({ evalGraph, t }) {
4848
<HBox gap={4} alignItems="center">
4949
<HBox gap={1} alignItems="center">
5050
<strong>Type:</strong>
51-
<span>Evaluation</span>
52-
<AntSwitch checked={graphTypeEval} onChange={(e) => setGraphTypeEval(e.target.checked)} color="white"/>
5351
<span>Rule</span>
52+
<AntSwitch checked={graphTypeEval} onChange={(e) => setGraphTypeEval(e.target.checked)} color="white"/>
53+
<span>Evaluation</span>
5454
</HBox>
5555
<HBox gap={1} alignItems="center">
5656
<strong>Orientation:</strong>

0 commit comments

Comments
 (0)