fix: SMS labels — clarify delivered means SMS delivered to phone, not goods
1-е SMS: «✓ доставлено» → «✓ получено клиентом» 2-е SMS: added «✓ получено клиентом» «ждём подтверждения» → «ждём ответ оператора»
This commit is contained in:
parent
5818b94bbe
commit
c86e0e1ea6
|
|
@ -189,9 +189,9 @@ export const SmsStatusCard = ({ order, userRole }) => {
|
||||||
<div className="flex-1">
|
<div className="flex-1">
|
||||||
<div className="text-[var(--color-text)]">1-е SMS</div>
|
<div className="text-[var(--color-text)]">1-е SMS</div>
|
||||||
{hasFirstSms ? (
|
{hasFirstSms ? (
|
||||||
<div className="text-[var(--color-text-muted)]">{fmtTime(firstSmsAt)} ✓ доставлено</div>
|
<div className="text-[var(--color-text-muted)]">{fmtTime(firstSmsAt)} ✓ получено клиентом</div>
|
||||||
) : hasSmsSent && notifStatus === "sms_sending" ? (
|
) : hasSmsSent && notifStatus === "sms_sending" ? (
|
||||||
<div className="text-[var(--color-text-muted)]">{fmtTime(smsSentAt)} · отправлено, ждём подтверждения…</div>
|
<div className="text-[var(--color-text-muted)]">{fmtTime(smsSentAt)} · отправлено, ждём ответ оператора…</div>
|
||||||
) : notifStatus === "link_ready" ? (
|
) : notifStatus === "link_ready" ? (
|
||||||
<div className="text-[var(--color-text-muted)]">в очереди на отправку</div>
|
<div className="text-[var(--color-text-muted)]">в очереди на отправку</div>
|
||||||
) : (
|
) : (
|
||||||
|
|
@ -206,7 +206,7 @@ export const SmsStatusCard = ({ order, userRole }) => {
|
||||||
<div className="flex-1">
|
<div className="flex-1">
|
||||||
<div className="text-[var(--color-text)]">2-е SMS</div>
|
<div className="text-[var(--color-text)]">2-е SMS</div>
|
||||||
{hasSecondSms ? (
|
{hasSecondSms ? (
|
||||||
<div className="text-[var(--color-text-muted)]">{fmtTime(secondSmsAt)}</div>
|
<div className="text-[var(--color-text-muted)]">{fmtTime(secondSmsAt)} ✓ получено клиентом</div>
|
||||||
) : notifStatus === "first_sms_sent" && countdown ? (
|
) : notifStatus === "first_sms_sent" && countdown ? (
|
||||||
<div className="text-[var(--color-text-muted)]">
|
<div className="text-[var(--color-text-muted)]">
|
||||||
отправка через <span className="font-mono text-[var(--color-accent)]">{countdown}</span>
|
отправка через <span className="font-mono text-[var(--color-accent)]">{countdown}</span>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue