Skip to content

Commit 3f6d525

Browse files
authored
[Dashboard] Fix explorer functions (#6352)
1 parent 0df4275 commit 3f6d525

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

apps/dashboard/src/components/contract-functions/contract-function.tsx

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -286,14 +286,7 @@ export const ContractFunctionsPanel: React.FC<ContractFunctionsPanelProps> = ({
286286
}) => {
287287
// TODO: clean this up
288288
const functionsWithExtension = useMemo(() => {
289-
const allFunctions = fnsOrEvents
290-
.filter((f) => f.type === "function")
291-
.filter(
292-
(f) =>
293-
f.name !== "setPlatformFeeInfo" &&
294-
f.name !== "setFlatPlatformFeeInfo" &&
295-
f.name !== "setPlatformFeeType",
296-
);
289+
const allFunctions = fnsOrEvents.filter((f) => f.type === "function");
297290
const results: ExtensionFunctions[] = [];
298291
results.push({
299292
extension: "",

0 commit comments

Comments
 (0)