fix: review comments

This commit is contained in:
Piyush Gupta
2025-11-15 00:23:50 +05:30
parent 0ea5baf135
commit 44c153b776

View File

@@ -43,7 +43,7 @@ export const SecretShareInfo = ({ secret }: Props) => {
<span>
{viewsRemaining === 0
? "This is the last time you can view this secret"
: `${viewsRemaining} more view${viewsRemaining === 1 ? "" : "s"} remaining after this`}
: `${viewsRemaining} more view${viewsRemaining === 1 ? "" : "s"} remaining`}
</span>
</div>
)}