Skip to content

Commit f64d30a

Browse files
committed
fix(APIModalSubmitRadioGroupComponent): nullable value
1 parent 6df197a commit f64d30a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

deno/payloads/v10/_interactions/modalSubmit.ts

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

deno/payloads/v9/_interactions/modalSubmit.ts

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

payloads/v10/_interactions/modalSubmit.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export interface APIModalSubmitFileUploadComponent extends APIBaseModalSubmitCom
4141
}
4242

4343
export interface APIModalSubmitRadioGroupComponent extends APIBaseModalSubmitComponent<ComponentType.RadioGroup> {
44-
value?: string;
44+
value: string | null;
4545
}
4646

4747
export interface APIModalSubmitCheckboxGroupComponent extends APIBaseModalSubmitComponent<ComponentType.CheckboxGroup> {

payloads/v9/_interactions/modalSubmit.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export interface APIModalSubmitFileUploadComponent extends APIBaseModalSubmitCom
4141
}
4242

4343
export interface APIModalSubmitRadioGroupComponent extends APIBaseModalSubmitComponent<ComponentType.RadioGroup> {
44-
value?: string;
44+
value: string | null;
4545
}
4646

4747
export interface APIModalSubmitCheckboxGroupComponent extends APIBaseModalSubmitComponent<ComponentType.CheckboxGroup> {

0 commit comments

Comments
 (0)