fix: eslint problem

This commit is contained in:
mahyargdz
2025-04-14 16:45:01 +03:30
parent bec73658d5
commit 167cb15e32
8 changed files with 15 additions and 11 deletions
@@ -206,7 +206,7 @@ export class CustomersService {
if (!addressEntity) throw new BadRequestException(UserMessage.ADDRESS_NOT_FOUND);
// Prepare address updates
const addressUpdates: any = {};
const addressUpdates: Record<string, unknown> = {};
if (cityId) {
const { city } = await this.addressService.getCity(+cityId);