hotfix: explorer temporary disable vote instruction card (#15596)

This commit is contained in:
Josh
2021-03-01 10:05:51 -08:00
committed by GitHub
parent aee7012aed
commit 24af9961d2
3 changed files with 13 additions and 12 deletions

View File

@@ -34,7 +34,7 @@ import {
useTransactionStatus,
} from "providers/transactions";
import { Cluster, useCluster } from "providers/cluster";
import { VoteDetailsCard } from "components/instruction/vote/VoteDetailsCard";
// import { VoteDetailsCard } from "components/instruction/vote/VoteDetailsCard";
import { UpgradeableBpfLoaderDetailsCard } from "components/instruction/upgradeable-bpf-loader/UpgradeableBpfLoaderDetailsCard";
export function InstructionsSection({ signature }: SignatureProps) {
@@ -171,9 +171,8 @@ function renderInstructionCard({
return <StakeDetailsCard {...props} />;
case "spl-memo":
return <MemoDetailsCard {...props} />;
case "vote":
console.log(props);
return <VoteDetailsCard {...props} />;
/*case "vote":
return <VoteDetailsCard {...props} />;*/
default:
return <UnknownDetailsCard {...props} />;
}