Skip to content

Commit ceae6b8

Browse files
committed
chore: change scroll timeout
1 parent 226fdb6 commit ceae6b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/uikit-react-native/src/domain/groupChannelThread/component/GroupChannelThreadMessageList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const GroupChannelThreadMessageList = (props: GroupChannelThreadProps['MessageLi
3333
const foundMessageIndex = props.messages.findIndex((it) => it.createdAt === props.startingPoint);
3434
const isIncludedInList = foundMessageIndex > -1;
3535
if (isIncludedInList) {
36-
lazyScrollToIndex({ index: foundMessageIndex, animated: true, timeout: 250 });
36+
lazyScrollToIndex({ index: foundMessageIndex, animated: true, timeout: 500 });
3737
}
3838
}
3939
}, [props.startingPoint]);

0 commit comments

Comments
 (0)