From 1857a7b62877d194c922d0708dd14d873a11d7b6 Mon Sep 17 00:00:00 2001 From: Vitalii Kiiko Date: Fri, 25 Jul 2025 12:03:46 +0200 Subject: [PATCH] - fix for displaying calls; --- src/pages/Bandi/components/AllBandiTableAsync/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/Bandi/components/AllBandiTableAsync/index.js b/src/pages/Bandi/components/AllBandiTableAsync/index.js index 9fabb7c..ee5b4cf 100644 --- a/src/pages/Bandi/components/AllBandiTableAsync/index.js +++ b/src/pages/Bandi/components/AllBandiTableAsync/index.js @@ -43,7 +43,7 @@ const AllBandiTableAsync = () => { status: { value: null, matchMode: 'equals' } } }); - const statuses = ['DRAFT', 'PUBLISH', 'EXPIRED']; + const statuses = ['DRAFT', 'PUBLISH', 'EXPIRED', 'READY_TO_PUBLISH']; const getPaginationQuery = useCallback(() => getQueryParamsForPaginatedEndpoint(lazyState, statuses, 'id'), [lazyState]);