diff options
Diffstat (limited to 'frontend/src')
| -rw-r--r-- | frontend/src/components/displays/TaikoScoreDisplay.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/frontend/src/components/displays/TaikoScoreDisplay.tsx b/frontend/src/components/displays/TaikoScoreDisplay.tsx index d67847a..bda0d8e 100644 --- a/frontend/src/components/displays/TaikoScoreDisplay.tsx +++ b/frontend/src/components/displays/TaikoScoreDisplay.tsx @@ -2,6 +2,7 @@ import React from "react"; import SHA1 from "crypto-js/sha1"; import { Link } from "react-router"; import { globalSkipKeys } from "../../types/constants"; +import notClearImg from "../../assets/games/taiko/not_clear.webp"; import clearImg from "../../assets/games/taiko/clear.webp"; import donderfulImg from "../../assets/games/taiko/donderful_combo.webp"; import easyImg from "../../assets/games/taiko/easy.webp"; @@ -177,7 +178,7 @@ const TaikoScoreDisplay: React.FC<ScoreDisplayProps> = ({ imgSrc = donderfulImg; break; default: - imgSrc = easyImg; + imgSrc = notClearImg; break; } return <span> |
