We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 597141b commit 6a5fc7bCopy full SHA for 6a5fc7b
1 file changed
packages/api/src/normalizeStyleOptions.ts
@@ -108,10 +108,7 @@ export default function normalizeStyleOptions({
108
if (hideScrollToEndButton) {
109
hideScrollToEndButtonDeprecation();
110
111
- // Only set if the "scrollToEndButtonBehavior" is not set.
112
- // If it has been set, the developer should know the older "hideScrollToEndButton" option is deprecated.
113
- filledOptions.scrollToEndButtonBehavior =
114
- typeof options.scrollToEndButtonBehavior === 'undefined' ? false : options.scrollToEndButtonBehavior;
+ filledOptions.scrollToEndButtonBehavior = false;
115
filledOptions.hideScrollToEndButton = undefined;
116
}
117
0 commit comments