- fixed request for signed document in applications;

- added filter by status to the table of draft applications;
- temp reverted back to previous api for getting amendments;
This commit is contained in:
Vitalii Kiiko
2025-03-25 11:37:46 +01:00
parent 431b9f5b45
commit 34b079c9cc
12 changed files with 58 additions and 21 deletions

View File

@@ -5,9 +5,8 @@ import { __ } from '@wordpress/i18n';
import DashboardService from '../../service/dashboard-service';
import { pathOr } from 'ramda';
import NumberFlow from '@number-flow/react';
//import PreInstructorSoccorsiTable from '../SoccorsoIstruttorioPreInstructor/components/PreInstructorSoccorsiTable';
import SoccorsiPreInstructorTableAsync
from '../SoccorsoIstruttorioPreInstructor/components/SoccorsiPreInstructorTableAsync';
//import SoccorsiPreInstructorTableAsync from '../SoccorsoIstruttorioPreInstructor/components/SoccorsiPreInstructorTableAsync';
import PreInstructorSoccorsiTable from '../SoccorsoIstruttorioPreInstructor/components/PreInstructorSoccorsiTable';
const SoccorsoIstruttorioInstructorManager = () => {
const [mainStats, setMainStats] = useState({});
@@ -88,8 +87,8 @@ const SoccorsoIstruttorioInstructorManager = () => {
<div className="appPage__spacer"></div>
<div className="appPageSection">
{/*<PreInstructorSoccorsiTable userId={0}/>*/}
<SoccorsiPreInstructorTableAsync userId={0}/>
<PreInstructorSoccorsiTable userId={0}/>
{/*<SoccorsiPreInstructorTableAsync userId={0}/>*/}
</div>
</div>
)