Skip to content

Commit

Permalink
ButtonAction value field not required
Browse files Browse the repository at this point in the history
  • Loading branch information
srajiang committed Jun 12, 2024
1 parent c2e26c4 commit 938d546
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/types/actions/block-action.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export interface BasicElementAction<T extends string = string> {
* An action from a button element
*/
export interface ButtonAction extends BasicElementAction<'button'> {
value: string;
value?: string;
text: PlainTextElement;
url?: string;
confirm?: Confirmation;
Expand Down

0 comments on commit 938d546

Please sign in to comment.