We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d39cd28 commit 83f596fCopy full SHA for 83f596f
packages/frontend/src/pages/ExecutionsForFlow/index.tsx
@@ -8,6 +8,7 @@ import { Pagination } from '@opengovsg/design-system-react'
8
9
import Container from '@/components/Container'
10
import ExecutionRow from '@/components/ExecutionRow'
11
+import { StatusType } from '@/components/ExecutionStatusMenu'
12
import NoResultFound from '@/components/NoResultFound'
13
import PageTitle from '@/components/PageTitle'
14
import PrimarySpinner from '@/components/PrimarySpinner'
@@ -98,7 +99,9 @@ export default function ExecutionsForFlowPage() {
98
99
{
100
variables: {
101
...getLimitAndOffset(page),
- status,
102
+ ...(status !== StatusType.Waiting && {
103
+ status,
104
+ }),
105
flowId,
106
},
107
skip: !flowId,
0 commit comments