Skip to content

Commit

Permalink
feat: test cypress
Browse files Browse the repository at this point in the history
  • Loading branch information
Rassl committed Aug 3, 2024
1 parent a4b9aec commit f3c9332
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ModalsContainer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const LazyUserFeedBackModal = lazy(() =>
export const ModalsContainer = () => {
const someModalIsOpen = useSomeModalIsOpen()

return someModalIsOpen ? (
return someModalIsOpen || true ? (

Check warning on line 49 in src/components/ModalsContainer/index.tsx

View workflow job for this annotation

GitHub Actions / craco-build-run

Unexpected constant condition

Check warning on line 49 in src/components/ModalsContainer/index.tsx

View workflow job for this annotation

GitHub Actions / eslint-run

Unexpected constant condition

Check warning on line 49 in src/components/ModalsContainer/index.tsx

View workflow job for this annotation

GitHub Actions / cypress-run

Unexpected constant condition
<>
<LazyAddItemModal />
<LazyAddContentModal />
Expand Down

0 comments on commit f3c9332

Please sign in to comment.