aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArda Serdar Pektezol <1669855+pektezol@users.noreply.github.com>2024-10-19 20:17:10 +0300
committerArda Serdar Pektezol <1669855+pektezol@users.noreply.github.com>2024-10-19 20:17:10 +0300
commitc85976207adf31165a5cb9478bf375960ed910a8 (patch)
tree78903c4e8703f8a5ac4da09d6de2dac892b667cb
parentfrontend: mix user page links, delete icon (diff)
downloadlphub-c85976207adf31165a5cb9478bf375960ed910a8.tar.gz
lphub-c85976207adf31165a5cb9478bf375960ed910a8.tar.bz2
lphub-c85976207adf31165a5cb9478bf375960ed910a8.zip
frontend: rename all chapters
-rw-r--r--frontend/src/pages/Profile.tsx2
-rw-r--r--frontend/src/pages/User.tsx2
2 files changed, 2 insertions, 2 deletions
diff --git a/frontend/src/pages/Profile.tsx b/frontend/src/pages/Profile.tsx
index 6bd4cf4..09033a5 100644
--- a/frontend/src/pages/Profile.tsx
+++ b/frontend/src/pages/Profile.tsx
@@ -185,7 +185,7 @@ const Profile: React.FC<ProfileProps> = ({ profile, token, gameData, onDeleteRec
185 185
186 {game === "0" ? 186 {game === "0" ?
187 <select disabled> 187 <select disabled>
188 <option>All Scores</option> 188 <option>All Chapters</option>
189 </select> 189 </select>
190 : chapterData === null ? <select></select> : 190 : chapterData === null ? <select></select> :
191 191
diff --git a/frontend/src/pages/User.tsx b/frontend/src/pages/User.tsx
index 9f677ca..d5edb4c 100644
--- a/frontend/src/pages/User.tsx
+++ b/frontend/src/pages/User.tsx
@@ -168,7 +168,7 @@ const User: React.FC<UserProps> = ({ token, profile, gameData }) => {
168 168
169 {game === "0" ? 169 {game === "0" ?
170 <select disabled> 170 <select disabled>
171 <option>All Scores</option> 171 <option>All Chapters</option>
172 </select> 172 </select>
173 : chapterData === null ? <select></select> : 173 : chapterData === null ? <select></select> :
174 174