Skip to content
This repository was archived by the owner on Feb 10, 2025. It is now read-only.

Commit 5968e31

Browse files
committed
fix lint-errors
1 parent 3c24bcd commit 5968e31

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

apps/ui/components/application/Page2.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -316,8 +316,7 @@ const Page2 = ({ application, onNext }: Props): JSX.Element => {
316316
const selectedAppEvents = selectorData
317317
.map((cell) => cellsToApplicationEventSchedules(cell))
318318
.map((aes) =>
319-
aes
320-
.filter((ae) => ae.priority === 300 || ae.priority === 200)
319+
aes.filter((ae) => ae.priority === 300 || ae.priority === 200)
321320
)
322321
.flat();
323322
if (selectedAppEvents.length === 0) {

0 commit comments

Comments
 (0)