Issue:
The Backend was returning a response object in the format {_object: list, data: data}, which was inconsistent with the Frontend's expectation. The Frontend was designed to receive data containing the list of models directly.
Solution:
Implemented a simple fix in the Backend to adjust its response format. Now, the Backend response aligns with the Frontend's expected format, where data directly contains the list of models.
Issue: The Backend was returning a response object in the format {_object: list, data: data}, which was inconsistent with the Frontend's expectation. The Frontend was designed to receive data containing the list of models directly.
Solution: Implemented a simple fix in the Backend to adjust its response format. Now, the Backend response aligns with the Frontend's expected format, where data directly contains the list of models.