Skip to content

Commit

Permalink
Merge branch 'dev' into mainnet
Browse files Browse the repository at this point in the history
  • Loading branch information
serefyarar committed Jul 16, 2024
2 parents a733d4e + 2440b8c commit a6bd56e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import {
IndexTeamNodeItem,
IndexWebPageItem,
ArticleIndexNodeItem,
AttestationIndexNodeItem,
} from "types/entity";

import NoLinks from "../../indexes/NoLinks";
Expand Down Expand Up @@ -92,7 +93,7 @@ const IndexItemList: FC<IndexItemListProps> = ({
<MemoAttestationItem
handleRemove={() => removeItem(item)}
search={!!search}
item={item as IndexIndexNodeItem}
item={item as AttestationIndexNodeItem}
/>
);
}
Expand Down
2 changes: 1 addition & 1 deletion web-app/src/types/entity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export type ArticleIndexNode = {
};
export type AttestationIndexNode = {
id: string;
attestationId: string;
attestationID: string;
attestedDate: string;
subject: string;
schema: {
Expand Down

0 comments on commit a6bd56e

Please sign in to comment.