Skip to content

Commit

Permalink
fix(type): item.description to be nullable (#207)
Browse files Browse the repository at this point in the history
  • Loading branch information
spaenleh authored Jul 12, 2023
1 parent 67223ea commit e8e7148
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/items/interfaces/item.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export interface EmbeddedLinkItemSettings extends ItemSettings {
export interface Item<S = ItemSettings> {
id: string;
name: string;
description: string;
description: string | null;
path: string;
settings: S;
creator: Member | null;
Expand Down

0 comments on commit e8e7148

Please sign in to comment.