You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Because the current version of the input function cannot handle recursion directly, I need to change its format from an arrow function to a standard function declaration.
Current Format
// Current()=>{
...
}
Proposed Format
// Proposedfunctionfn(){
...
}
Task
Implement standard function reader in createBlockModal
Ensure support for both cases (arrow function and standard function declaration)