Closed andersganander closed 4 months ago
The reason was that APIView was used to create the album list in the API and not the generics.ListCreateAPIView. The solution was to remove result in the AlbumsPage component and just use albums.
APIView
generics.ListCreateAPIView
The reason was that
APIView
was used to create the album list in the API and not thegenerics.ListCreateAPIView
. The solution was to remove result in the AlbumsPage component and just use albums.