@@ -29,7 +29,7 @@ export interface AppProps {
2929 config ?: SendbirdProviderProps [ 'config' ] ;
3030 voiceRecord ?: SendbirdProviderProps [ 'voiceRecord' ] ;
3131 isMultipleFilesMessageEnabled ?: SendbirdProviderProps [ 'isMultipleFilesMessageEnabled' ] ;
32- isFocusOnLastMessage ?: SendbirdProviderProps [ 'isFocusOnLastMessage ' ] ;
32+ autoscrollMessageOverflowToTop ?: SendbirdProviderProps [ 'autoscrollMessageOverflowToTop ' ] ;
3333 colorSet ?: SendbirdProviderProps [ 'colorSet' ] ;
3434 stringSet ?: SendbirdProviderProps [ 'stringSet' ] ;
3535 allowProfileEdit ?: SendbirdProviderProps [ 'allowProfileEdit' ] ;
@@ -100,7 +100,7 @@ export default function App(props: AppProps) {
100100 customExtensionParams,
101101 eventHandlers,
102102 isMultipleFilesMessageEnabled,
103- isFocusOnLastMessage = false ,
103+ autoscrollMessageOverflowToTop = false ,
104104 isUserIdUsedForNickname = true ,
105105 enableLegacyChannelModules = false ,
106106 uikitOptions,
@@ -140,7 +140,7 @@ export default function App(props: AppProps) {
140140 renderUserProfile = { renderUserProfile }
141141 imageCompression = { imageCompression }
142142 isMultipleFilesMessageEnabled = { isMultipleFilesMessageEnabled }
143- isFocusOnLastMessage = { isFocusOnLastMessage }
143+ autoscrollMessageOverflowToTop = { autoscrollMessageOverflowToTop }
144144 voiceRecord = { voiceRecord }
145145 onStartDirectMessage = { ( channel ) => {
146146 setCurrentChannel ( channel ) ;
@@ -162,7 +162,7 @@ export default function App(props: AppProps) {
162162 forceLeftToRightMessageLayout = { forceLeftToRightMessageLayout }
163163 >
164164 < AppLayout
165- isFocusOnLastMessage = { isFocusOnLastMessage }
165+ autoscrollMessageOverflowToTop = { autoscrollMessageOverflowToTop }
166166 isMessageGroupingEnabled = { isMessageGroupingEnabled }
167167 allowProfileEdit = { allowProfileEdit }
168168 onProfileEditSuccess = { onProfileEditSuccess }
0 commit comments