We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a480ebd commit d19cd8bCopy full SHA for d19cd8b
client/src/components/profile/components/time-line.tsx
@@ -198,13 +198,13 @@ function TimelineInner({
198
</Table>
199
)}
200
{id && (
201
- <Modal onClose={closeSolution} open={solutionOpen}>
+ <Modal onClose={closeSolution} open={solutionOpen} size='large'>
202
<Modal.Header showCloseButton={true} closeButtonClassNames='close'>
203
{`${username}'s Solution to ${
204
idToNameMap.get(id)?.challengeTitle ?? ''
205
}`}
206
</Modal.Header>
207
- <Modal.Body>
+ <Modal.Body alignment='left'>
208
<SolutionViewer
209
challengeFiles={challengeData.challengeFiles}
210
solution={challengeData.solution ?? ''}
0 commit comments