diff options
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> |
