Skip to content

Commit

Permalink
- linting
Browse files Browse the repository at this point in the history
  • Loading branch information
elipe17 committed Dec 11, 2024
1 parent d04656e commit 04483ad
Showing 1 changed file with 10 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,20 @@ describe('SubmissionHistory', () => {

const defaultReprocessedState = {
setDate: () => {},
setModalVisible: () => {}
setModalVisible: () => {},
}

const setup = (store = appStore, filterValues = defaultFilterValues, reprocessedState = defaultReprocessedState) =>
const setup = (
store = appStore,
filterValues = defaultFilterValues,
reprocessedState = defaultReprocessedState
) =>
render(
<Provider store={store}>
<SubmissionHistory filterValues={filterValues} reprocessedState={reprocessedState} />
<SubmissionHistory
filterValues={filterValues}
reprocessedState={reprocessedState}
/>
</Provider>
)

Expand Down

0 comments on commit 04483ad

Please sign in to comment.