Commit 6d2e6e39 authored by Omar Luna Hernández's avatar Omar Luna Hernández
Browse files

Se elimino un log innecesario

parent 3821607c
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -17,8 +17,6 @@ export class CategoryDatasourceProd implements CategoryDatasourceInf{
  
  async getCategories(): Promise<Category[]> {
    const {data: dataES} = await axios.get<CategoryModel[]>(APIUrl+'/category/ES');
    console.log(dataES);
    
    const {data: dataEN} = await axios.get<CategoryModel[]>(APIUrl+'/category/EN');
    const categories : Category[] = [];
    for(let i=0; i<dataES.length; i++){