diff --git a/src/modules/admin/controllers/shop.controller.ts b/src/modules/admin/controllers/shop.controller.ts index f715d9d..eabd2ca 100644 --- a/src/modules/admin/controllers/shop.controller.ts +++ b/src/modules/admin/controllers/shop.controller.ts @@ -75,8 +75,8 @@ export class AdminShopController extends BaseController { @ApiAuth() @httpGet("/", Guard.authAdmin()) public async getAdminShop() { - const data = await this.shopRepo.findAdminShop(); - return this.response({ data }, HttpStatus.Ok); + const shop = await this.shopRepo.findAdminShop(); + return this.response({ shop }, HttpStatus.Ok); } //###############################################################