Porque no se sincronizan todos los datos guardados?

In your project you have some invalid regex patterns:

^[A-Z,-,/, ,0-9]*$"

Please remove them and try again.

The correct pattern would be ^[A-Z,-,\/, ,0-9]*$" since the / must be escaped.

You can validate your regex patterns here →