Skip to content

Commit

Permalink
Fixes #22
Browse files Browse the repository at this point in the history
  • Loading branch information
Meefish committed Nov 15, 2024
1 parent d84a3f6 commit f64cfd8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/Experiment.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ const Experiment: React.FC = () => {
/>
</div>
<div className="button-content">
<p>Amount: {experiment.numberOfQuestionnaires || 0}</p>
<p>Number of Questionnaires: {experiment.numberOfQuestionnaires || 0}</p>
<p>Responses: {experiment.questionnaireActivity || 0}</p>
</div>
</button>
Expand All @@ -150,7 +150,7 @@ const Experiment: React.FC = () => {
/>
</div>
<div className="button-content">
<p>Amount: {experiment.numberOfMessages || 0}</p>
<p>Number of Messages: {experiment.numberOfMessages || 0}</p>
<p>Sent: {experiment.messageActivity || 0}</p>
</div>
</button>
Expand Down

0 comments on commit f64cfd8

Please sign in to comment.