Skip to content

Commit

Permalink
fix: Comment out side-effect ridden code
Browse files Browse the repository at this point in the history
  • Loading branch information
ksentak committed Jul 25, 2024
1 parent c5faee9 commit 90e1789
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/shared/modules.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ const getProviderInterfaceMethods = (capability, json) => {

function getProviderInterface(capability, module, extractProviderSchema = false) {
module = JSON.parse(JSON.stringify(module))
const iface = getProviderInterfaceMethods(capability, module).map(method => localizeDependencies(method, module, null, { mergeAllOfs: true }))
const iface = getProviderInterfaceMethods(capability, module)//.map(method => localizeDependencies(method, module, null, { mergeAllOfs: true }))

iface.forEach(method => {
const payload = getPayloadFromEvent(method)
Expand Down

0 comments on commit 90e1789

Please sign in to comment.