Skip to content

Commit

Permalink
#0000 Fixed audio issue and uppercase issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ajinkyapandetekdi committed Oct 18, 2024
2 parents 48f246c + 83b9cf1 commit 0fe8e71
Show file tree
Hide file tree
Showing 2 changed files with 193 additions and 33 deletions.
219 changes: 188 additions & 31 deletions src/utils/constants.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions src/views/Practice/Practice.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,7 @@ const Practice = () => {
user_id: virtualId,
totalSyllableCount: totalSyllableCount,
language: localStorage.getItem("lang"),
is_mechanics: currentGetContent?.mechanism?.id ? true : false,
}
);
const { data: getSetData } = getSetResultRes;
Expand Down Expand Up @@ -311,7 +312,8 @@ const Practice = () => {
: "") +
(currentGetContent?.competency
? `&level_competency=${currentGetContent?.competency}`
: "")
: "") +
(currentGetContent?.tags ? `&tags=${currentGetContent?.tags}` : "")
);

setTotalSyllableCount(resGetContent?.data?.totalSyllableCount);
Expand Down Expand Up @@ -551,7 +553,8 @@ const Practice = () => {
: "") +
(currentGetContent?.competency
? `&level_competency=${currentGetContent?.competency}`
: "")
: "") +
(currentGetContent?.tags ? `&tags=${currentGetContent?.tags}` : "")
);
setTotalSyllableCount(resWord?.data?.totalSyllableCount);
setLivesData({
Expand Down

0 comments on commit 0fe8e71

Please sign in to comment.