fix: rename discipline buttons from Activate/Pause to Start Practicing/Stop Practicing
Build and Publish Mana Loop Docker Image / build-and-publish (push) Successful in 1m33s

This commit is contained in:
2026-05-25 11:55:31 +02:00
parent 25109c920a
commit f22ebf1b3b
3 changed files with 4 additions and 5 deletions
+1 -1
View File
@@ -135,7 +135,7 @@ const DisciplineCard: React.FC<DisciplineCardProps> = ({ definition, runtime, ca
: 'bg-blue-600 text-white hover:bg-blue-500',
)}
>
{isPaused ? 'Activate' : 'Pause'}
{isPaused ? 'Start Practicing' : 'Stop Practicing'}
</button>
</div>
</div>