Describe the bug
The error message in SendOperations.js uses ${methodName} inside a string literal (single quotes) instead of a template literal (backticks), causing the variable to not be interpolated. This results in the error message displaying the literal string ${methodName} instead of the actual method name.
Location
File: packages/components/src/components/SendOperations.js
Line: 98
Current Code (Incorrect)
console.error('Error sending ${methodName} message:', error);