Skip to content

Commit c749b2d

Browse files
committed
fix: nitpick text change
1 parent f2867a2 commit c749b2d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

web/src/pages/Home/TopJurors/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ const TopJurors: React.FC = () => {
5858
<Container>
5959
<Title>Top Jurors</Title>
6060
{!isUndefined(topJurors) && topJurors.length === 0 ? (
61-
<StyledLabel>There are no jurors staked yet.</StyledLabel>
61+
<StyledLabel>No jurors found</StyledLabel>
6262
) : (
6363
<ListContainer>
6464
<Header />

web/src/pages/Jurors/DisplayJurors.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ const DisplayJurors: React.FC<IDisplayJurors> = ({ totalLeaderboardJurors }) =>
6868
return (
6969
<>
7070
{!isUndefined(jurors) && jurors.length === 0 ? (
71-
<StyledLabel>There are no jurors staked yet.</StyledLabel>
71+
<StyledLabel>No jurors found</StyledLabel>
7272
) : (
7373
<>
7474
<ListContainer>

0 commit comments

Comments
 (0)