Skip to content

Commit

Permalink
feat: improve no matches text (#433)
Browse files Browse the repository at this point in the history
  • Loading branch information
LarsSelbekk authored Jun 11, 2024
1 parent 7a504cf commit 1f65b60
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/components/matches/matchesList/MatchesList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,16 @@ export const MatchesList: React.FC = () => {
);

if (matches.length === 0) {
return <Alert severity="info">Du har ingen overleveringer :)</Alert>;
return (
<Alert severity="info">
Du har ingen overleveringer :)
<p>
Har du fått melding om overleveringer? Sjekk om du er logget inn med
riktig konto.
</p>
<p>Ta kontakt med info@boklisten.no om du har spørsmål.</p>
</Alert>
);
}

const numberFulfilledMatches = matches.filter((element) =>
Expand Down

0 comments on commit 1f65b60

Please sign in to comment.