fix(appointment): update EmptyCard to display 'افزودن نوبت سریع' for better clarity

This commit is contained in:
hamed
2026-07-16 09:05:26 +03:30
parent b1b99903ec
commit b7730f545a
@@ -78,7 +78,7 @@ function EmptyCard({ slot, onBook }: { slot: TimelineSlot; onBook: (s: TimelineS
<InnerTimes start={slot.start_time} end={slot.end_time} color={isPast ? '#9E9E9E' : cfg.dotColor} />
<div style={{ flex: 1, display: 'flex', alignItems: 'center', justifyContent: 'center', gap: 6 }}>
<span style={{ fontSize: 13.5, color: isPast ? 'var(--text-3)' : cfg.textColor, fontWeight: 500 }}>
{isPast ? 'گذشته' : 'افزودن نوبت'}
{isPast ? 'گذشته' : 'افزودن نوبت سریع'}
</span>
{!isPast && <PlusIcon style={{ width: 18, height: 18, color: cfg.textColor }} />}
</div>