From 05b6a4e7e212c07dac45e963184039f4017e4c3c Mon Sep 17 00:00:00 2001 From: Bill Keese Date: Wed, 4 Dec 2024 03:11:37 +0900 Subject: [PATCH] fix(selectable-tile): make deprecated value property optional (#18143) I previously fixed PropTypes but forgot to update the Typescript declaration. Fixes #16977. Refs #13537, #13631. --- packages/react/src/components/Tile/Tile.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react/src/components/Tile/Tile.tsx b/packages/react/src/components/Tile/Tile.tsx index 2b46a20169a7..136a22fc967f 100644 --- a/packages/react/src/components/Tile/Tile.tsx +++ b/packages/react/src/components/Tile/Tile.tsx @@ -439,7 +439,7 @@ export interface SelectableTileProps extends HTMLAttributes { * The value of the ``. * @deprecated */ - value: string | number; + value?: string | number; } export const SelectableTile = React.forwardRef<