Skip to content

Commit

Permalink
fix: Fixed the missing implementation of ChannelAware in code snippet
Browse files Browse the repository at this point in the history
  • Loading branch information
Draykee committed Nov 18, 2024
1 parent 2a3aee1 commit 5e2f8d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/docs/guides/developer-guide/channel-aware/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { VendureEntity, Product, EntityId, ID, ChannelAware } from '@vendure/cor
import { Column, Entity, ManyToOne } from 'typeorm';

@Entity()
class ProductRequest extends VendureEntity {
class ProductRequest extends VendureEntity implements ChannelAware {
constructor(input?: DeepPartial<ProductRequest>) {
super(input);
}
Expand Down

0 comments on commit 5e2f8d8

Please sign in to comment.