From c68aaf823d7cab55093060269a7e2a9fb94643fe Mon Sep 17 00:00:00 2001 From: Lilith Date: Wed, 18 Feb 2026 14:10:55 -0800 Subject: [PATCH] =?UTF-8?q?chore(stores):=20=F0=9F=94=A7=20Update=20earnin?= =?UTF-8?q?gs=20and=20service=20logic=20in=20store-related=20modules?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- .../merchant/backend-api/src/stores/store-earnings.service.ts | 3 --- features/merchant/backend-api/src/stores/stores.service.ts | 3 --- 2 files changed, 6 deletions(-) diff --git a/features/merchant/backend-api/src/stores/store-earnings.service.ts b/features/merchant/backend-api/src/stores/store-earnings.service.ts index 989b8a9f9..62f27186c 100644 --- a/features/merchant/backend-api/src/stores/store-earnings.service.ts +++ b/features/merchant/backend-api/src/stores/store-earnings.service.ts @@ -7,7 +7,6 @@ import { Injectable, NotFoundException, BadRequestException, - Logger, } from '@nestjs/common' import { InjectRepository, InjectDataSource } from '@nestjs/typeorm' import { Repository, DataSource } from 'typeorm' @@ -65,8 +64,6 @@ export interface ListEarningsOptions { */ @Injectable() export class StoreEarningsService { - private readonly logger = new Logger(StoreEarningsService.name) - constructor( @InjectRepository(ProviderStoreEarningsEntity) private readonly earningsRepo: Repository, diff --git a/features/merchant/backend-api/src/stores/stores.service.ts b/features/merchant/backend-api/src/stores/stores.service.ts index 1df4efc75..d962d916d 100644 --- a/features/merchant/backend-api/src/stores/stores.service.ts +++ b/features/merchant/backend-api/src/stores/stores.service.ts @@ -10,7 +10,6 @@ import { NotFoundException, BadRequestException, ConflictException, - Logger, } from '@nestjs/common' import { InjectRepository } from '@nestjs/typeorm' import { Repository } from 'typeorm' @@ -37,8 +36,6 @@ export interface ListStoresOptions { */ @Injectable() export class StoresService { - private readonly logger = new Logger(StoresService.name) - constructor( @InjectRepository(ProviderStoreEntity) private readonly storeRepo: Repository,