Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mehdi-torabiv committed Jan 20, 2025
1 parent 79e98ff commit 0c6c223
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
12 changes: 6 additions & 6 deletions src/pages/Identifiers/Attestation/Attestation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ import { useState } from 'react';
import { Alert, AlertTitle, Paper } from '@mui/material';
import { useParams } from 'react-router-dom';

import DiscourseStepFour from '../../../components/pages/Attestations/DiscourseStepFour';
import DiscourseStepOne from '../../../components/pages/Attestations/DiscourseStepOne';
import DiscourseStepThree from '../../../components/pages/Attestations/DiscourseStepThree';
import DiscourseStepTwo from '../../../components/pages/Attestations/DiscourseStepTwo';
// import DiscourseStepFour from '../../../components/pages/Attestations/DiscourseStepFour';
// import DiscourseStepOne from '../../../components/pages/Attestations/DiscourseStepOne';
// import DiscourseStepThree from '../../../components/pages/Attestations/DiscourseStepThree';
// import DiscourseStepTwo from '../../../components/pages/Attestations/DiscourseStepTwo';
import StepOne from '../../../components/pages/Attestations/StepOne';

Check failure on line 9 in src/pages/Identifiers/Attestation/Attestation.tsx

View workflow job for this annotation

GitHub Actions / test/node 18/ubuntu-latest

Cannot find module '../../../components/pages/Attestations/StepOne' or its corresponding type declarations.

Check failure on line 9 in src/pages/Identifiers/Attestation/Attestation.tsx

View workflow job for this annotation

GitHub Actions / test/node 17/ubuntu-latest

Cannot find module '../../../components/pages/Attestations/StepOne' or its corresponding type declarations.

Check failure on line 9 in src/pages/Identifiers/Attestation/Attestation.tsx

View workflow job for this annotation

GitHub Actions / test/node 18/ubuntu-latest

Cannot find module '../../../components/pages/Attestations/StepOne' or its corresponding type declarations.

Check failure on line 9 in src/pages/Identifiers/Attestation/Attestation.tsx

View workflow job for this annotation

GitHub Actions / test/node 17/ubuntu-latest

Cannot find module '../../../components/pages/Attestations/StepOne' or its corresponding type declarations.
import StepThree from '../../../components/pages/Attestations/StepThree';

Check failure on line 10 in src/pages/Identifiers/Attestation/Attestation.tsx

View workflow job for this annotation

GitHub Actions / test/node 18/ubuntu-latest

Cannot find module '../../../components/pages/Attestations/StepThree' or its corresponding type declarations.

Check failure on line 10 in src/pages/Identifiers/Attestation/Attestation.tsx

View workflow job for this annotation

GitHub Actions / test/node 17/ubuntu-latest

Cannot find module '../../../components/pages/Attestations/StepThree' or its corresponding type declarations.

Check failure on line 10 in src/pages/Identifiers/Attestation/Attestation.tsx

View workflow job for this annotation

GitHub Actions / test/node 18/ubuntu-latest

Cannot find module '../../../components/pages/Attestations/StepThree' or its corresponding type declarations.

Check failure on line 10 in src/pages/Identifiers/Attestation/Attestation.tsx

View workflow job for this annotation

GitHub Actions / test/node 17/ubuntu-latest

Cannot find module '../../../components/pages/Attestations/StepThree' or its corresponding type declarations.
import StepTwo from '../../../components/pages/Attestations/StepTwo';

Check failure on line 11 in src/pages/Identifiers/Attestation/Attestation.tsx

View workflow job for this annotation

GitHub Actions / test/node 18/ubuntu-latest

Cannot find module '../../../components/pages/Attestations/StepTwo' or its corresponding type declarations.

Check failure on line 11 in src/pages/Identifiers/Attestation/Attestation.tsx

View workflow job for this annotation

GitHub Actions / test/node 17/ubuntu-latest

Cannot find module '../../../components/pages/Attestations/StepTwo' or its corresponding type declarations.

Check failure on line 11 in src/pages/Identifiers/Attestation/Attestation.tsx

View workflow job for this annotation

GitHub Actions / test/node 18/ubuntu-latest

Cannot find module '../../../components/pages/Attestations/StepTwo' or its corresponding type declarations.

Check failure on line 11 in src/pages/Identifiers/Attestation/Attestation.tsx

View workflow job for this annotation

GitHub Actions / test/node 17/ubuntu-latest

Cannot find module '../../../components/pages/Attestations/StepTwo' or its corresponding type declarations.
Expand Down Expand Up @@ -51,7 +51,7 @@ export default function Attestation() {
return (
<>
<CustomBreadcrumb breadcrumbs={breadcrumbs} className="pb-3" />
<Paper
{/* <Paper
sx={{
height: 'calc(100vh - 140px)',
p: 2,
Expand Down Expand Up @@ -87,7 +87,7 @@ export default function Attestation() {
{activeStep === 3 && (
<DiscourseStepFour attestedSignutare={attestedSignutare} />
)}
</Paper>
</Paper> */}
</>
);
}
Expand Down
6 changes: 2 additions & 4 deletions tsconfig.app.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,9 @@
"module": "ESNext",
"skipLibCheck": true,
"types": ["vitest/globals", "@testing-library/jest-dom"],
"allowSyntheticDefaultImports": true,

/* Bundler mode */
"moduleResolution": "node",
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
Expand All @@ -35,6 +34,5 @@
"src",
"src/**/*.tsx",
"src/**/*.ts"
],
"exclude": ["node_modules", "dist"]
]
}

0 comments on commit 0c6c223

Please sign in to comment.