Warn user when description approaches word limit 📝
File: client/src/components/Task/TaskModal.jsx
Character counter exists but no color
warning when approaching limit 💀 fr!!
Fix: change counter color based on count:
<span className={text-[10px] text-right transition-colors ${descCount > 250 ? 'text-red-400 font-medium' : descCount > 200 ? 'text-yellow-400' : 'text-[#555]'}}>
{descCount}/300
{descCount > 250 && ' ⚠️ almost full!'}
~6 lines! descCount already exists ✅
No backend needed 🎯
Super clear UX!! ✨
Warn user when description approaches word limit 📝
File: client/src/components/Task/TaskModal.jsx
Character counter exists but no color
warning when approaching limit 💀 fr!!
Fix: change counter color based on count:⚠️ almost full!'}
<span className={
text-[10px] text-right transition-colors ${descCount > 250 ? 'text-red-400 font-medium' : descCount > 200 ? 'text-yellow-400' : 'text-[#555]'}}>{descCount}/300
{descCount > 250 && '
~6 lines! descCount already exists ✅
No backend needed 🎯
Super clear UX!! ✨