diff --git a/src/app/(dashboard)/dashboard/media-providers/[kind]/[id]/page.js b/src/app/(dashboard)/dashboard/media-providers/[kind]/[id]/page.js
index 4ddfa5fe..e4d52276 100644
--- a/src/app/(dashboard)/dashboard/media-providers/[kind]/[id]/page.js
+++ b/src/app/(dashboard)/dashboard/media-providers/[kind]/[id]/page.js
@@ -263,7 +263,7 @@ function EmbeddingExampleCard({ providerId }) {
className="flex items-center gap-1.5 px-3 py-1 rounded-lg bg-primary text-white text-xs font-medium hover:bg-primary/90 transition-colors disabled:opacity-50 disabled:cursor-not-allowed"
>
- {running ? "progress_activity" : "play_arrow"}
+ play_arrow
{running ? "Running..." : "Run"}
@@ -699,7 +699,7 @@ function TtsExampleCard({ providerId }) {
className="flex items-center gap-1.5 px-3 py-1 rounded-lg bg-primary text-white text-xs font-medium hover:bg-primary/90 transition-colors disabled:opacity-50 disabled:cursor-not-allowed"
>
- {running ? "progress_activity" : "play_arrow"}
+ play_arrow
{running ? "Generating..." : "Run"}
@@ -959,7 +959,7 @@ function GenericExampleCard({ providerId, kind }) {
className="flex items-center gap-1.5 px-3 py-1 rounded-lg bg-primary text-white text-xs font-medium hover:bg-primary/90 transition-colors disabled:opacity-50 disabled:cursor-not-allowed"
>
- {running ? "progress_activity" : "play_arrow"}
+ play_arrow
{running ? "Running..." : "Run"}
diff --git a/src/app/(dashboard)/dashboard/providers/page.js b/src/app/(dashboard)/dashboard/providers/page.js
index 90a4d8d1..d70d9a70 100644
--- a/src/app/(dashboard)/dashboard/providers/page.js
+++ b/src/app/(dashboard)/dashboard/providers/page.js
@@ -267,7 +267,7 @@ export default function ProvidersPage() {
- {testingMode === "oauth" ? "sync" : "play_arrow"}
+ play_arrow
{testingMode === "oauth" ? "Testing..." : "Test All"}
@@ -307,7 +307,7 @@ export default function ProvidersPage() {
- {testingMode === "free" ? "sync" : "play_arrow"}
+ play_arrow
{testingMode === "free" ? "Testing..." : "Test All"}
@@ -356,7 +356,7 @@ export default function ProvidersPage() {
- {testingMode === "apikey" ? "sync" : "play_arrow"}
+ play_arrow
{testingMode === "apikey" ? "Testing..." : "Test All"}
@@ -395,7 +395,7 @@ export default function ProvidersPage() {
title="Test all Compatible connections"
>
- {testingMode === "compatible" ? "sync" : "play_arrow"}
+ play_arrow
{testingMode === "compatible" ? "Testing..." : "Test All"}