File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
packages/template-retail-react-app/app/components/store-locator-modal Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ const StoresList = ({storesInfo}) => {
4040 JSON . stringify ( {
4141 id : storeId ,
4242 name : store . name || null ,
43- inventoryId : store . inventoryId || null ,
43+ inventoryId : store . inventoryId || null
4444 } )
4545 )
4646 }
@@ -51,7 +51,11 @@ const StoresList = ({storesInfo}) => {
5151 return (
5252 < AccordionItem key = { index } >
5353 < HStack align = "flex-start" marginTop = "16px" >
54- < Radio value = { store . id } marginTop = "1.5px" aria-describedby = { `store-info-${ store . id } ` } > </ Radio >
54+ < Radio
55+ value = { store . id }
56+ marginTop = "1.5px"
57+ aria-describedby = { `store-info-${ store . id } ` }
58+ > </ Radio >
5559 < Box id = { `store-info-${ store . id } ` } >
5660 { store . name ? < Box fontSize = "lg" > { store . name } </ Box > : '' }
5761 < Box fontSize = "md" color = "gray.600" >
You can’t perform that action at this time.
0 commit comments