Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mehdi-torabiv committed Jan 16, 2025
1 parent 14bd160 commit 6a235c7
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ import { useNavigate } from 'react-router-dom';
import { Address } from 'viem';
import { useAccount } from 'wagmi';

import { AttestPayload } from '../../../../interfaces';
import EASService from '../../../../services/eas.service';
import useSnackbarStore from '../../../../store/useSnackbarStore';
import { contracts } from '../../../../utils/contracts/eas/contracts';
import { useSigner } from '../../../../utils/eas-wagmi-utils';
import { AttestPayload } from '../../../interfaces';
import EASService from '../../../services/eas.service';
import useSnackbarStore from '../../../store/useSnackbarStore';
import { contracts } from '../../../utils/contracts/eas/contracts';
import { useSigner } from '../../../utils/eas-wagmi-utils';

interface DiscourseStepFourProps {
attestedSignutare: AttestPayload | null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import { Box, Button, Stack, Typography } from '@mui/material';
import { jwtDecode } from 'jwt-decode';
import { FaDiscourse } from 'react-icons/fa';

import { useGenerateDiscourseVerificationTokenMutation } from '../../../../services/api/eas/query';
import useSnackbarStore from '../../../../store/useSnackbarStore';
import { useGenerateDiscourseVerificationTokenMutation } from '../../../services/api/eas/query';
import useSnackbarStore from '../../../store/useSnackbarStore';

interface DiscourseStepOneProps {
handleNextStep: () => void;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ import {
import { FaLink } from 'react-icons/fa6';
import { useAccount } from 'wagmi';

import { Provider } from '../../../../enums';
import { AttestPayload } from '../../../../interfaces';
import { useLinkIdentifierMutation } from '../../../../services/api/eas/query';
import { capitalize } from '../../../../utils/helper';
import { Provider } from '../../../enums';
import { AttestPayload } from '../../../interfaces';
import { useLinkIdentifierMutation } from '../../../services/api/eas/query';
import { capitalize } from '../../../utils/helper';

interface DiscourseStepThreeProps {
provider: Provider | undefined;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import {
import { Controller, useForm } from 'react-hook-form';
import { FaDiscourse } from 'react-icons/fa';

import { useVerifyDiscourseTopicMutation } from '../../../../services/api/eas/query';
import useSnackbarStore from '../../../../store/useSnackbarStore';
import { useVerifyDiscourseTopicMutation } from '../../../services/api/eas/query';
import useSnackbarStore from '../../../store/useSnackbarStore';

interface DiscourseStepTwoProps {
handleNextStep: () => void;
Expand Down
8 changes: 4 additions & 4 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/Discourse/DiscourseStepFour';
import DiscourseStepOne from '../../../components/pages/Attestations/Discourse/DiscourseStepOne';
import DiscourseStepThree from '../../../components/pages/Attestations/Discourse/DiscourseStepThree';
import DiscourseStepTwo from '../../../components/pages/Attestations/Discourse/DiscourseStepTwo';
import DiscourseStepFour from '../../../components/pages/Attestations/DiscourseStepFour';

Check failure on line 5 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/DiscourseStepFour' or its corresponding type declarations.

Check failure on line 5 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/DiscourseStepFour' or its corresponding type declarations.

Check failure on line 5 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/DiscourseStepFour' or its corresponding type declarations.

Check failure on line 5 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/DiscourseStepFour' or its corresponding type declarations.
import DiscourseStepOne from '../../../components/pages/Attestations/DiscourseStepOne';

Check failure on line 6 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/DiscourseStepOne' or its corresponding type declarations.

Check failure on line 6 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/DiscourseStepOne' or its corresponding type declarations.

Check failure on line 6 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/DiscourseStepOne' or its corresponding type declarations.

Check failure on line 6 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/DiscourseStepOne' or its corresponding type declarations.
import DiscourseStepThree from '../../../components/pages/Attestations/DiscourseStepThree';

Check failure on line 7 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/DiscourseStepThree' or its corresponding type declarations.

Check failure on line 7 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/DiscourseStepThree' or its corresponding type declarations.

Check failure on line 7 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/DiscourseStepThree' or its corresponding type declarations.

Check failure on line 7 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/DiscourseStepThree' or its corresponding type declarations.
import DiscourseStepTwo from '../../../components/pages/Attestations/DiscourseStepTwo';

Check failure on line 8 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/DiscourseStepTwo' or its corresponding type declarations.

Check failure on line 8 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/DiscourseStepTwo' or its corresponding type declarations.

Check failure on line 8 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/DiscourseStepTwo' or its corresponding type declarations.

Check failure on line 8 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/DiscourseStepTwo' or its corresponding type declarations.
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

0 comments on commit 6a235c7

Please sign in to comment.