Skip to content

Commit 4b83335

Browse files
committed
fix: remove unnecessary relations parameter from LiveItemService update method
1 parent 476670c commit 4b83335

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/services/liveItem/liveItem.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export class LiveItemService extends BaseOneService<LiveItem, 'item'> {
2323
live_item_status_id: dto.live_item_status
2424
};
2525

26-
return super._update(item, finalDto, { relations: ['live_item_status'] });
26+
return super._update(item, finalDto);
2727
}
2828

2929
async getManyByChannel(channel: Channel, config?: FindManyOptions<LiveItem>): Promise<LiveItem[]> {

0 commit comments

Comments
 (0)