Skip to content

Commit

Permalink
minro fix
Browse files Browse the repository at this point in the history
  • Loading branch information
advu committed Oct 3, 2024
1 parent 5a5c3cb commit c9296eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/components/Tests/ReadingTest/ReadingTest.js
Original file line number Diff line number Diff line change
Expand Up @@ -326,8 +326,8 @@ const ReadingTest = () => {
useEffect(() => {
setShowFeedbacks(false)
if (currentReadingSet !== null && prevReadingSet !== null && currentReadingSet !== prevReadingSet) {
const currentSet = readingTestSetDict[currentReadingSet]
if (currentSet && currentSet.collect_final_reflection) {
const prevSet = readingTestSetDict[prevReadingSet]
if (prevSet && prevSet.collect_final_reflection) {
if (in_experimental_grp && receivedFeedback > 0) {
setShowSelfReflect(!resumedTest)
}
Expand Down

0 comments on commit c9296eb

Please sign in to comment.