diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-03-08 13:28:21 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-03-08 13:28:21 +0900 |
| commit | 7b40cbce19bb9cbc88bf53573638d4db6b73b1a9 (patch) | |
| tree | ff9cd95f461c8d3f87311e882df36e656c2281ec | |
| parent | 453ba4b4c089707f1c22cd754109bcbec343f748 (diff) | |
| download | iosdc-japan-2025-albatross-7b40cbce19bb9cbc88bf53573638d4db6b73b1a9.tar.gz iosdc-japan-2025-albatross-7b40cbce19bb9cbc88bf53573638d4db6b73b1a9.tar.zst iosdc-japan-2025-albatross-7b40cbce19bb9cbc88bf53573638d4db6b73b1a9.zip | |
description
3 files changed, 7 insertions, 3 deletions
diff --git a/frontend/app/components/GolfPlayApps/GolfPlayAppGaming.tsx b/frontend/app/components/GolfPlayApps/GolfPlayAppGaming.tsx index bc205fb..d0e5a9a 100644 --- a/frontend/app/components/GolfPlayApps/GolfPlayAppGaming.tsx +++ b/frontend/app/components/GolfPlayApps/GolfPlayAppGaming.tsx @@ -85,7 +85,7 @@ export default function GolfPlayAppGaming({ <div className="mb-2 text-xl font-bold">{problemTitle}</div> <div className="p-2 grid gap-4"> <BorderedContainer> - <div className="text-gray-700">{problemDescription}</div> + <pre className="text-gray-700">{problemDescription}</pre> </BorderedContainer> <BorderedContainer> <div> diff --git a/frontend/app/components/GolfWatchApps/GolfWatchAppGaming1v1.tsx b/frontend/app/components/GolfWatchApps/GolfWatchAppGaming1v1.tsx index 033186c..ade565f 100644 --- a/frontend/app/components/GolfWatchApps/GolfWatchAppGaming1v1.tsx +++ b/frontend/app/components/GolfWatchApps/GolfWatchAppGaming1v1.tsx @@ -118,7 +118,9 @@ export default function GolfWatchAppGaming1v1({ <div className="mb-2 text-center text-xl font-bold"> {problemTitle} </div> - <BorderedContainer>{problemDescription}</BorderedContainer> + <BorderedContainer> + <pre>{problemDescription}</pre> + </BorderedContainer> </div> </div> <CodeBlock code={codeB} language="php" /> diff --git a/frontend/app/components/GolfWatchApps/GolfWatchAppGamingMultiplayer.tsx b/frontend/app/components/GolfWatchApps/GolfWatchAppGamingMultiplayer.tsx index b6d2ac3..f5766c0 100644 --- a/frontend/app/components/GolfWatchApps/GolfWatchAppGamingMultiplayer.tsx +++ b/frontend/app/components/GolfWatchApps/GolfWatchAppGamingMultiplayer.tsx @@ -52,7 +52,9 @@ export default function GolfWatchAppGamingMultiplayer({ <div className="mb-2 text-center text-xl font-bold"> {problemTitle} </div> - <BorderedContainer>{problemDescription}</BorderedContainer> + <BorderedContainer> + <pre>{problemDescription}</pre> + </BorderedContainer> </div> </div> <div> |
