Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/react/src/lib/KeyboardKey.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export interface KeyboardKeyProps<
buttonProps?: SharedButtonProps<C, ActionProp>;
/** Optional callback for per-key button props */
getButtonProps?: (
context: ButtonRenderContext,
context: ButtonRenderContext
) => Partial<SharedButtonProps<C, ActionProp>>;
}

Expand Down Expand Up @@ -92,6 +92,6 @@ export function KeyboardKey<
...(mergedProps as ButtonPropsFor<C>),
...(actionProp as ButtonPropsFor<C>),
},
label,
label
);
}
Loading