Skip to content

Commit 1f5ddef

Browse files
committed
lint
1 parent 8e43dfc commit 1f5ddef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/extension-chakra-store-locator/src/components/with-store-locator.test.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ jest.mock('../hooks/use-extension-store', () => ({
2121

2222
// Mock the StoreLocatorModal component
2323
jest.mock('./modal', () => ({
24-
StoreLocatorModal: ({isOpen, onClose}) => (
24+
// eslint-disable-next-line react/prop-types
25+
StoreLocatorModal: ({isOpen, onClose}) =>
2526
isOpen ? (
2627
<div data-testid="store-locator-modal">
2728
Modal Content
2829
<button onClick={onClose}>Close</button>
2930
</div>
3031
) : null
31-
)
3232
}))
3333

3434
describe('withStoreLocator', () => {

0 commit comments

Comments
 (0)