Commit b353f94 1 parent 22d4be5 commit b353f94 Copy full SHA for b353f94
File tree 3 files changed +9
-7
lines changed
packages/web/src/pages/upload-page
3 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -283,6 +283,7 @@ const MultiTrackFooter = () => {
283
283
iconLeft = { IconCaretLeft }
284
284
onClick = { goPrev }
285
285
disabled = { prevDisabled }
286
+ type = 'button'
286
287
/>
287
288
< HarmonyButton
288
289
className = { cn ( { [ styles . disabled ] : nextDisabled } ) }
@@ -291,6 +292,7 @@ const MultiTrackFooter = () => {
291
292
iconRight = { IconCaretRight }
292
293
onClick = { goNext }
293
294
disabled = { nextDisabled }
295
+ type = 'button'
294
296
/>
295
297
</ div >
296
298
)
Original file line number Diff line number Diff line change 7
7
padding : var (--unit-4 ) var (--unit-6 );
8
8
gap : var (--unit-4 );
9
9
10
- border : 1px solid var (--border-strong );
10
+ border : 1px solid var (--border-default );
11
11
border-radius : 8px ;
12
12
}
13
13
Original file line number Diff line number Diff line change @@ -13,6 +13,8 @@ import {
13
13
import { useFormikContext } from 'formik'
14
14
import { isEmpty } from 'lodash'
15
15
16
+ import { Tile } from 'components/tile/Tile'
17
+
16
18
import styles from './ModalField.module.css'
17
19
18
20
const messages = {
@@ -60,12 +62,10 @@ export const ModalField = (props: ModalFieldProps) => {
60
62
)
61
63
62
64
return (
63
- < >
64
- < div className = { styles . previewTile } onClick = { open } >
65
- { preview }
66
- < IconCaretRight className = { styles . caret } />
67
- </ div >
65
+ < Tile onClick = { open } className = { styles . previewTile } elevation = 'flat' >
66
+ { preview }
67
+ < IconCaretRight className = { styles . caret } />
68
68
{ modal }
69
- </ >
69
+ </ Tile >
70
70
)
71
71
}
You can’t perform that action at this time.
0 commit comments