diff --git a/src/components/Form/SafariFormWrapper.tsx b/src/components/Form/SafariFormWrapper.tsx index 4062205fa1ea..8ad411e547be 100644 --- a/src/components/Form/SafariFormWrapper.tsx +++ b/src/components/Form/SafariFormWrapper.tsx @@ -4,6 +4,9 @@ import type ChildrenProps from '@src/types/utils/ChildrenProps'; type SafariFormWrapperProps = ChildrenProps; +/** + * If we used any without
wrapper, Safari 11+ would show the auto-fill suggestion popup. + */ function SafariFormWrapper({children}: SafariFormWrapperProps) { if (isSafari()) { return {children}
;