Skip to content

Commit e859eaa

Browse files
committed
Updated the character counter direction
For some reason it was counting down, but it should be counting up to the limit.
1 parent 952e750 commit e859eaa

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

apps/web/ui/partners/bounties/claim-bounty-modal.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -626,8 +626,7 @@ function ClaimBountyModalContent({ bounty }: ClaimBountyModalProps) {
626626
/>
627627
<div className="mt-1 text-left">
628628
<span className="text-xs text-neutral-500">
629-
{BOUNTY_MAX_SUBMISSION_DESCRIPTION_LENGTH -
630-
description.length}{" "}
629+
{description.length}{" "}
631630
/ {BOUNTY_MAX_SUBMISSION_DESCRIPTION_LENGTH}
632631
</span>
633632
</div>

0 commit comments

Comments
 (0)