Skip to content

Commit 8bd458e

Browse files
committed
lint
1 parent 469ec2c commit 8bd458e

File tree

1 file changed

+6
-2
lines changed
  • packages/template-retail-react-app/app/components/store-locator-modal

1 file changed

+6
-2
lines changed

packages/template-retail-react-app/app/components/store-locator-modal/stores-list.jsx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff 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">

0 commit comments

Comments
 (0)