Skip to content

Commit

Permalink
fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
mehdi-torabiv committed Sep 1, 2024
1 parent 79b7e1d commit ff1cd91
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/pages/Permissions/Permissions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ import CustomTable, {
AccessData,
Platform,
} from '../../components/shared/CustomTable';
import { decodeAttestationData, IAttestation } from '../../libs/oci';
import { IAttestation } from '../../interfaces';
import { decodeAttestationData } from '../../libs/oci';
import { useGetAttestations } from '../../services/eas/query';
import useSnackbarStore from '../../store/useSnackbarStore';
import sepoliaChainAppConctract from '../../utils/contracts/app/sepoliaChain.json';
Expand Down
2 changes: 1 addition & 1 deletion src/services/eas/query.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { useQuery } from '@tanstack/react-query';
import { gql } from 'graphql-request';
import { Address } from 'viem';

import { IAttestation } from '../../libs/oci';
import { IAttestation } from '../../interfaces';
import { EAS_SCHEMA_ID } from '../../utils/contracts/eas/constants';
import { ATTESTER_ADDRESS, graphQLClient } from '.';

Expand Down

0 comments on commit ff1cd91

Please sign in to comment.