Skip to content

Commit

Permalink
[Dashboard] Fix explorer functions (#6352)
Browse files Browse the repository at this point in the history
  • Loading branch information
kumaryash90 authored Feb 26, 2025
1 parent 0df4275 commit 3f6d525
Showing 1 changed file with 1 addition and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -286,14 +286,7 @@ export const ContractFunctionsPanel: React.FC<ContractFunctionsPanelProps> = ({
}) => {
// TODO: clean this up
const functionsWithExtension = useMemo(() => {
const allFunctions = fnsOrEvents
.filter((f) => f.type === "function")
.filter(
(f) =>
f.name !== "setPlatformFeeInfo" &&
f.name !== "setFlatPlatformFeeInfo" &&
f.name !== "setPlatformFeeType",
);
const allFunctions = fnsOrEvents.filter((f) => f.type === "function");
const results: ExtensionFunctions[] = [];
results.push({
extension: "",
Expand Down

0 comments on commit 3f6d525

Please sign in to comment.