File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
apps/main/src/loan/components/PageMintMarket Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -114,7 +114,13 @@ export const MintMarketPage = () => {
114114 </ AppPageFormsWrapper >
115115 < Stack flexDirection = "column" flexGrow = { 1 } sx = { { gap : Spacing . md } } >
116116 < Stack sx = { { backgroundColor : ( t ) => t . design . Layer [ 1 ] . Fill } } >
117- { loanExists ? < BorrowPositionDetails { ...positionDetails } /> : < NoPosition type = "borrow" /> }
117+ { loanExists ? (
118+ < BorrowPositionDetails { ...positionDetails } />
119+ ) : (
120+ < Stack padding = { Spacing . md } sx = { { backgroundColor : ( t ) => t . design . Layer [ 1 ] . Fill } } >
121+ < NoPosition type = "borrow" />
122+ </ Stack >
123+ ) }
118124 { userCollateralEvents ?. events && userCollateralEvents . events . length > 0 && (
119125 < Stack
120126 paddingLeft = { Spacing . md }
You can’t perform that action at this time.
0 commit comments