Skip to content

Commit 83f596f

Browse files
authored
fix: remove waiting status filter check (#877)
## Problem Waiting status has to be removed on the backend ## Tests - [x] Pipes that are delayed will show up on waiting filter status
1 parent d39cd28 commit 83f596f

File tree

1 file changed

+4
-1
lines changed
  • packages/frontend/src/pages/ExecutionsForFlow

1 file changed

+4
-1
lines changed

packages/frontend/src/pages/ExecutionsForFlow/index.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import { Pagination } from '@opengovsg/design-system-react'
88

99
import Container from '@/components/Container'
1010
import ExecutionRow from '@/components/ExecutionRow'
11+
import { StatusType } from '@/components/ExecutionStatusMenu'
1112
import NoResultFound from '@/components/NoResultFound'
1213
import PageTitle from '@/components/PageTitle'
1314
import PrimarySpinner from '@/components/PrimarySpinner'
@@ -98,7 +99,9 @@ export default function ExecutionsForFlowPage() {
9899
{
99100
variables: {
100101
...getLimitAndOffset(page),
101-
status,
102+
...(status !== StatusType.Waiting && {
103+
status,
104+
}),
102105
flowId,
103106
},
104107
skip: !flowId,

0 commit comments

Comments
 (0)