no message

This commit is contained in:
Kittapath 2024-03-29 14:01:44 +07:00
parent 318c2ee7ba
commit af474c085d

View file

@ -126,10 +126,10 @@ export class ProfileGovernmentHistoryController extends Controller {
public async govHistory(@Path() profileId: string) {
const record = await this.govRepo.find({
order: { lastUpdatedAt: "DESC" },
where: { profileId },
where: { profileId: profileId },
});
record.pop();
// record.pop();
return new HttpSuccess(record);
}