Tweak copy ("You with" => "You have")

This commit is contained in:
Austin Chen 2022-04-30 10:19:59 -04:00
parent a4c722550a
commit 04c42e7835

View File

@ -180,7 +180,7 @@ export function FeedComment(props: {
/>{' '} />{' '}
{!matchedBet && userPosition > 0 && ( {!matchedBet && userPosition > 0 && (
<> <>
{'with ' + userPositionMoney + ' '} {'had ' + userPositionMoney + ' '}
<> <>
{' of '} {' of '}
<OutcomeLabel <OutcomeLabel
@ -269,7 +269,7 @@ export function CommentInput(props: {
<div className="text-sm text-gray-500"> <div className="text-sm text-gray-500">
{user && userPosition > 0 && ( {user && userPosition > 0 && (
<> <>
{'You with ' + userPositionMoney + ' '} {'You have ' + userPositionMoney + ' '}
<> <>
{' of '} {' of '}
<OutcomeLabel <OutcomeLabel