Skip to content

Commit

Permalink
fix(selectable-tile): make deprecated value property optional (#18143)
Browse files Browse the repository at this point in the history
I previously fixed PropTypes but forgot to update the Typescript declaration.

Fixes #16977.
Refs #13537, #13631.
  • Loading branch information
wkeese authored Dec 3, 2024
1 parent 5ce9938 commit 05b6a4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react/src/components/Tile/Tile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ export interface SelectableTileProps extends HTMLAttributes<HTMLDivElement> {
* The value of the `<input>`.
* @deprecated
*/
value: string | number;
value?: string | number;
}

export const SelectableTile = React.forwardRef<
Expand Down

0 comments on commit 05b6a4e

Please sign in to comment.