diff --git a/packages/components/src/custom-select-control-v2/index.tsx b/packages/components/src/custom-select-control-v2/index.tsx index 87750eaaec99eb..338c7198ce37f6 100644 --- a/packages/components/src/custom-select-control-v2/index.tsx +++ b/packages/components/src/custom-select-control-v2/index.tsx @@ -56,6 +56,8 @@ export function CustomSelect( { setValue: ( nextValue ) => onChange?.( nextValue ), defaultValue, value, + // fix for Safari bug: https://github.com/WordPress/gutenberg/issues/55023#issuecomment-1834035917 + virtualFocus: false, } ); const { value: currentValue } = store.useState();