fix(types): SelectOption#default is not required (#2066)

* fix(types):  is not required

* ddcmp

Co-authored-by: Skillz4Killz <23035000+Skillz4Killz@users.noreply.github.com>
This commit is contained in:
ITOH
2022-02-25 10:07:48 -05:00
committed by GitHub
co-authored by Skillz4Killz
parent 8654b4e87b
commit 4e06ed6b2c
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -114,7 +114,7 @@ export interface DiscordenoComponent {
animated?: boolean;
};
/** Will render this option as already-selected by default. */
default: boolean;
default?: boolean;
}[];
/** A custom placeholder text if nothing is selected. Maximum 100 characters. */
placeholder?: string;
+1 -1
View File
@@ -16,5 +16,5 @@ export interface SelectOption {
animated?: boolean;
};
/** Will render this option as already-selected by default. */
default: boolean;
default?: boolean;
}