Error when modifying an array in the rule input, it only happens on the site

Hello, I have a "little" problem.

I have an array that I want to modify using a! save, inside my foreach. Everything works fine on the interface.

a!sideBySideItem(
                      item: a!buttonArrayLayout(
                        buttons: {
                          a!buttonWidget(
                            label: "",
                            icon: "trash-o",
                            size: "SMALL",
                            width: "MINIMIZE",
                            style: "DESTRUCTIVE",
                            loadingIndicator: true,
                            saveInto: {
                              a!save(
                                target: ri!moneyAccounts[fv!index].isDeleted,
                                value: true()
                              ),

                            }
                          ),
                          a!buttonWidget(
                            label: "",
                            icon: "pencil-square-o",
                            size: "SMALL",
                            width: "MINIMIZE",
                            style: "PRIMARY"
                          )
                        },
                        align: "START"
                      ),
                      width: "MINIMIZE"
                    )

But when I want to use it on the site I get this error. Please help

  Discussion posts and replies are publicly visible