- 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

@@ -8,7 +8,8 @@ import { useStore } from '../../store';
// components
import DashboardService from '../../service/dashboard-service';
import SoccorsiPreInstructorTableAsync from './components/SoccorsiPreInstructorTableAsync';
//import SoccorsiPreInstructorTableAsync from './components/SoccorsiPreInstructorTableAsync';
import PreInstructorSoccorsiTable from './components/PreInstructorSoccorsiTable';
const SoccorsoIstruttorioPreInstructor = () => {
const [mainStats, setMainStats] = useState({});
@@ -90,7 +91,8 @@ const SoccorsoIstruttorioPreInstructor = () => {
<div className="appPage__spacer"></div>
<div className="appPageSection">
<SoccorsiPreInstructorTableAsync userId={userData.id}/>
{/*<SoccorsiPreInstructorTableAsync userId={userData.id}/>*/}
<PreInstructorSoccorsiTable userId={userData.id}/>
</div>
</div>
)