diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 3739a32bd07..652b3b92bcd 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -288,7 +288,6 @@ jobs: cd kube/deployments/ sed -i -e "s/_BUILD_NUMBER_/${GITHUB_RUN_NUMBER}/g" care-fe.yaml kubectl apply -f care-fe.yaml - deploy-production-manipur: needs: build-production name: Deploy to GKE Manipur diff --git a/src/Components/Facility/Consultations/PrimaryParametersPlot.tsx b/src/Components/Facility/Consultations/PrimaryParametersPlot.tsx index ec27ddb97dd..e566aabe345 100644 --- a/src/Components/Facility/Consultations/PrimaryParametersPlot.tsx +++ b/src/Components/Facility/Consultations/PrimaryParametersPlot.tsx @@ -9,7 +9,6 @@ import Pagination from "../../Common/Pagination"; import { PAGINATION_LIMIT } from "../../../Common/constants"; export const PrimaryParametersPlot = (props: any) => { - const { consultationId } = props; const dispatch: any = useDispatch(); const [results, setResults] = useState({}); const [currentPage, setCurrentPage] = useState(1); @@ -36,7 +35,7 @@ export const PrimaryParametersPlot = (props: any) => { "rhythm_detail", ], }, - { consultationId } + props.consultationId ) ); if (!status.aborted) { @@ -46,14 +45,14 @@ export const PrimaryParametersPlot = (props: any) => { } } }, - [consultationId, dispatch, currentPage] + [props.consultationId, dispatch, currentPage] ); useAbortableEffect( (status: statusType) => { fetchDailyRounds(status); }, - [consultationId, currentPage] + [props.consultationId, currentPage] ); const handlePagination = (page: number) => { diff --git a/src/Components/Facility/HospitalList.tsx b/src/Components/Facility/HospitalList.tsx index 1e59cb91d21..22bfb67457c 100644 --- a/src/Components/Facility/HospitalList.tsx +++ b/src/Components/Facility/HospitalList.tsx @@ -534,7 +534,7 @@ export const HospitalList = (props: any) => {