Skip to content

Commit

Permalink
fix: types for explorer proposals table
Browse files Browse the repository at this point in the history
  • Loading branch information
mattrussell36 committed Jul 16, 2024
1 parent 798f654 commit b6f3bb1
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ type ProposalTermsDialog = {
content: unknown;
};
type ProposalsTableProps = {
data: ProposalListFieldsFragment[] | null;
data: Array<
ProposalListFieldsFragment | BatchproposalListFieldsFragment
> | null;
};
export const ProposalsTable = ({ data }: ProposalsTableProps) => {
const tokenLink = useLinks(DApp.Governance);
Expand Down

0 comments on commit b6f3bb1

Please sign in to comment.