We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0df4275 commit 3f6d525Copy full SHA for 3f6d525
apps/dashboard/src/components/contract-functions/contract-function.tsx
@@ -286,14 +286,7 @@ export const ContractFunctionsPanel: React.FC<ContractFunctionsPanelProps> = ({
286
}) => {
287
// TODO: clean this up
288
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
- );
+ const allFunctions = fnsOrEvents.filter((f) => f.type === "function");
297
const results: ExtensionFunctions[] = [];
298
results.push({
299
extension: "",
0 commit comments