Skip to content

Commit 42d7420

Browse files
committed
Mark alertType as not required
1 parent 8c40839 commit 42d7420

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/sdk/src/shared/component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ type Defaultable<T, SingleT = T> = {
6868

6969
export type ConfigurablePropAlert = BaseConfigurableProp & {
7070
type: "alert";
71-
alertType: "info" | "neutral" | "warning" | "error"; // TODO check the types
71+
alertType?: "info" | "neutral" | "warning" | "error"; // TODO check the types
7272
content: string;
7373
};
7474

0 commit comments

Comments
 (0)