I'm encountering schema validation errors in FlutterFlow for multiple List<String> fields that are stored in Firebase. The fields include group IDs, interests, and photo URLs. Despite the data being correctly stored in Firebase as arrays (e.g., ["group_19", "group_4"]), FlutterFlow's schema validation keeps showing errors stating "Expected type: List<String>" for all these fields.
My fields are already configured as List with String type in FlutterFlow's backend configuration, but the validation errors persist even after updating the schema. The data structure in Firebase appears correct, with proper array formatting and string values.