Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import type { Option } from 'calypso/landing/subscriptions/components/sort-controls';
export const getOptionLabel = < T >( options: Option< T >[], value: T ) => {
const foundOption = options.find( ( option ) => option.value === value )?.label;
if ( ! foundOption ) {
return options[ 0 ].label;
}
return foundOption;
};