From 78c481c3d9cf38cd5e436562e91370a54047c220 Mon Sep 17 00:00:00 2001 From: ochairo <19258508+ochairo@users.noreply.github.com> Date: Fri, 5 Apr 2024 15:41:24 +0900 Subject: [PATCH] Update showcase.repository.ts --- .../features/showcase/data/repositories/showcase.repository.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/features/showcase/data/repositories/showcase.repository.ts b/src/app/features/showcase/data/repositories/showcase.repository.ts index 7943733..9b96755 100644 --- a/src/app/features/showcase/data/repositories/showcase.repository.ts +++ b/src/app/features/showcase/data/repositories/showcase.repository.ts @@ -9,6 +9,7 @@ export default class ShowcaseRepository implements IShowcaseRepository { } async get(): Promise { + // If you need merge or shape data do it here, no necesary to return the same data as the API return this._remoteDataSource.get(); } }