Skip to content

Commit

Permalink
text edits
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrieljaegerde committed Apr 25, 2024
1 parent d142625 commit c7ed96a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions app/[chain]/referendum-rewards/components/form-actions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -358,11 +358,13 @@ export default function FormActions({
<p>
Start the sendout process. You will be asked to sign
<span className="text-warning px-4">
{amountOfTxs ?? "multiple"} transactions in sequence.
{amountOfTxs === 1 ? "1 transaction" : `${amountOfTxs ?? "multiple"} transactions`}
</span>
Complete all for a full sendout.
in sequence.
{amountOfTxs > 1 && "Complete all for a full sendout."}
</p>
</div>

{rewardSendoutData && (
<Button
onClick={onAnalyzeOpenChange}
Expand Down

0 comments on commit c7ed96a

Please sign in to comment.