fix: avatar : string
All checks were successful
Build & Deploy on Dev / build (push) Successful in 56s

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2026-01-30 17:05:16 +07:00
parent 109caf7a0d
commit 79372e803c
5 changed files with 10 additions and 10 deletions

View file

@ -154,8 +154,8 @@ export class ProfileAvatarEmployeeTempController extends Controller {
where: { id: _record.profileEmployeeId },
});
if (profile) {
profile.avatar = null;
profile.avatarName = null;
profile.avatar = "";
profile.avatarName = "";
await this.profileRepository.save(profile, { data: req });
}
}