Spaces:
Sleeping
Sleeping
TOMOCHIN4 commited on
Commit ·
15488d0
1
Parent(s): 3d1ba2c
fix: 問題数表示を20問→10問に修正
Browse files- static/js/components.js +1 -1
static/js/components.js
CHANGED
|
@@ -434,7 +434,7 @@ const SubjectSelectScreen = ({ name, onNext }) => {
|
|
| 434 |
<p className="text-accent-brown font-serif text-sm font-medium">{loadingMessage}</p>
|
| 435 |
{loadingStep === 2 && (
|
| 436 |
<p className="text-soft-brown text-xs mt-2">
|
| 437 |
-
{selected.length}教科 ×
|
| 438 |
</p>
|
| 439 |
)}
|
| 440 |
</div>
|
|
|
|
| 434 |
<p className="text-accent-brown font-serif text-sm font-medium">{loadingMessage}</p>
|
| 435 |
{loadingStep === 2 && (
|
| 436 |
<p className="text-soft-brown text-xs mt-2">
|
| 437 |
+
{selected.length}教科 × 10問 = 計{selected.length * 10}問 | {elapsedTime}秒経過
|
| 438 |
</p>
|
| 439 |
)}
|
| 440 |
</div>
|