Skip to content

Commit 2a8a90c

Browse files
committed
Merge branch 'dev' into refactor/appeal-tab
2 parents 2f654a7 + 227337b commit 2a8a90c

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

web/src/pages/Cases/CaseDetails/Appeal/Classic/StageExplainer.tsx

+11-11
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const StyledBox = styled(Box)`
1717
height: auto;
1818
width: 100%;
1919
padding: 16px 24px;
20-
& > div > label {
20+
& > div > p {
2121
display: block;
2222
margin-bottom: 4px;
2323
}
@@ -46,12 +46,12 @@ interface IStageExplainer {
4646
const StageOneExplanation: React.FC = () => (
4747
<div>
4848
{" "}
49-
<label>
49+
<p>
5050
Losing options can only be funded <small>before</small> the deadline.
51-
</label>
52-
<label>
51+
</p>
52+
<p>
5353
If no losing option is <small>fully funded</small> in time, the jury decision is maintained.
54-
</label>
54+
</p>
5555
</div>
5656
);
5757

@@ -60,14 +60,14 @@ const StageTwoExplanation: React.FC = () => {
6060
const options = useOptionsContext();
6161
return (
6262
<div>
63-
<label>
63+
<p>
6464
Loser deadline has <small>finalized</small>, you can only fund the current winner.
65-
</label>
66-
<label>
65+
</p>
66+
<p>
6767
If the current winner is not fully funded in time, the option funded during the previous stage will be declared
6868
as the final winner.
69-
</label>
70-
<label>
69+
</p>
70+
<p>
7171
{" "}
7272
Following choice was funded in the stage 1 :{" "}
7373
<small>
@@ -77,7 +77,7 @@ const StageTwoExplanation: React.FC = () => {
7777
)
7878
: null}
7979
</small>
80-
</label>
80+
</p>
8181
</div>
8282
);
8383
};

0 commit comments

Comments
 (0)