Skip to content

Commit cbde0d0

Browse files
Fix PlaySetupModal formatting for CI
1 parent 10275ce commit cbde0d0

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

src/components/Common/PlaySetupModal.tsx

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ export const PlaySetupModal: React.FC<Props> = (props: Props) => {
297297
<select
298298
id="partner-select"
299299
value={maiaPartnerVersion}
300-
className="min-w-0 w-full rounded border border-glass-border bg-glass px-3 py-2 text-sm text-white/90 focus:outline-none"
300+
className="w-full min-w-0 rounded border border-glass-border bg-glass px-3 py-2 text-sm text-white/90 focus:outline-none"
301301
onChange={(e) => setMaiaPartnerVersion(e.target.value)}
302302
>
303303
{maiaOptions.map((maia) => (
@@ -327,7 +327,7 @@ export const PlaySetupModal: React.FC<Props> = (props: Props) => {
327327
<select
328328
id="opponent-select"
329329
value={maiaVersion}
330-
className="min-w-0 w-full rounded border border-glass-border bg-glass px-3 py-2 text-sm text-white/90 focus:outline-none"
330+
className="w-full min-w-0 rounded border border-glass-border bg-glass px-3 py-2 text-sm text-white/90 focus:outline-none"
331331
onChange={(e) => setMaiaVersion(e.target.value)}
332332
>
333333
{maiaOptions.map((maia) => (
@@ -365,7 +365,11 @@ export const PlaySetupModal: React.FC<Props> = (props: Props) => {
365365
</div>
366366
</div>
367367

368-
<div className={compactHandBrainLayout ? 'space-y-2.5' : 'space-y-3'}>
368+
<div
369+
className={
370+
compactHandBrainLayout ? 'space-y-2.5' : 'space-y-3'
371+
}
372+
>
369373
<div>
370374
<div
371375
className={`flex items-center justify-between ${

0 commit comments

Comments
 (0)