Skip to content

Commit

Permalink
fix(itementry): smogon page is nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
favna committed Feb 15, 2021
1 parent 65200d7 commit 4efeb36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/structures/ItemEntry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ export default class ItemEntry {
@Field(() => String, { description: 'Serebii page for an item' })
public serebiiPage!: string;

@Field(() => String, { description: 'Smogon page for an item' })
public smogonPage!: string;
@Field(() => String, { nullable: true, description: 'Smogon page for an item' })
public smogonPage?: string;
}

0 comments on commit 4efeb36

Please sign in to comment.