From 824392fdeb17b22dee7e03d7a5c6a381fa7ca5a2 Mon Sep 17 00:00:00 2001 From: AveryMadness Date: Tue, 23 Jan 2024 21:29:19 -0700 Subject: [PATCH] make sure to hit that subscribe button --- src/routes/AdminTrackList.tsx | 2 +- src/routes/Profile.tsx | 4 ++-- src/routes/Tracks.tsx | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/routes/AdminTrackList.tsx b/src/routes/AdminTrackList.tsx index 86ea5f6..0a7422f 100644 --- a/src/routes/AdminTrackList.tsx +++ b/src/routes/AdminTrackList.tsx @@ -35,7 +35,7 @@ export function AdminTrackList() { } else toast(Res.data.errorMessage, { type: "error" }) - }}>Add to Bookmarks + }}>Subscribe diff --git a/src/routes/Profile.tsx b/src/routes/Profile.tsx index 808fcd1..d95f7c6 100644 --- a/src/routes/Profile.tsx +++ b/src/routes/Profile.tsx @@ -105,7 +105,7 @@ export function Profile() { : You have no activated songs. } - My Bookmarks + My Subscriptions { bookmarkedSongs.length >= 1 ? @@ -120,7 +120,7 @@ export function Profile() { } else toast(Res.data.errorMessage, { type: "error" }) - }}>Remove from Bookmarks + }}>Unsubscribe ; }) : You have no bookmarked songs. diff --git a/src/routes/Tracks.tsx b/src/routes/Tracks.tsx index 75c836c..30f0b2c 100644 --- a/src/routes/Tracks.tsx +++ b/src/routes/Tracks.tsx @@ -47,7 +47,7 @@ export function Tracks() { } else toast(Res.data.errorMessage, { type: "error" }) - }}>Remove from Bookmarks : + }}>Unsubscribe : + }}>Subscribe } })