Skip to content

Commit

Permalink
Make optional argument
Browse files Browse the repository at this point in the history
  • Loading branch information
neekolas committed Feb 23, 2024
1 parent d565cd5 commit daabd7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/component-library/components/Frame/Frame.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ type FrameProps = {
buttons: FrameButton[];
handleClick: (
buttonNumber: number,
action: FrameButton["action"] | undefined,
action?: FrameButton["action"],
) => Promise<void>;
onTextInputChange: (value: string) => void;
frameButtonUpdating: number;
Expand Down

0 comments on commit daabd7c

Please sign in to comment.