File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed
package/src/components/Channel Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 1414jobs :
1515 build_and_deploy_ios_testflight_qa :
1616 name : Build SampleApp iOS and Deploy-${{ github.ref == 'refs/heads/V5' }}
17- runs-on : [macos-14 ]
17+ runs-on : [macos-15 ]
1818 steps :
1919 - name : Connect Bot
2020 uses :
webfactory/[email protected] @@ -25,15 +25,17 @@ jobs:
2525 - name : Install && Build - SDK and Sample App
2626 uses : ./.github/actions/install-and-build-sdk
2727 - name : Cache iOS pods
28- uses : actions/cache@v2
28+ uses : actions/cache@v4
2929 with :
3030 path : examples/SampleApp/ios/Pods
3131 key : ${{ runner.os }}-pods-${{ hashFiles('examples/SampleApp/ios/Podfile.lock') }}
3232 restore-keys : |
3333 ${{ runner.os }}-pods-
3434 - name : iOS Pods setup
3535 working-directory : examples/SampleApp/ios
36- run : bundle exec pod install
36+ run : |
37+ pod update hermes-engine --no-repo-update
38+ bundle exec pod install
3739 - name : Build and release Testflight QA
3840 working-directory : examples/SampleApp
3941 run : bundle exec fastlane deploy_to_testflight_qa deploy:${{ github.ref == 'refs/heads/V5' }};
Original file line number Diff line number Diff line change @@ -203,7 +203,7 @@ export const reactionData: ReactionData[] = [
203203 * If count of unread messages is less than 4, then no need to scroll to first unread message,
204204 * since first unread message will be in visible frame anyways.
205205 */
206- const scrollToFirstUnreadThreshold = 4 ;
206+ const scrollToFirstUnreadThreshold = 0 ;
207207
208208const defaultThrottleInterval = 500 ;
209209const defaultDebounceInterval = 500 ;
@@ -1042,6 +1042,7 @@ const ChannelWithContext = <
10421042 } ,
10431043 ( ) => {
10441044 if ( unreadMessageIdToScrollTo ) {
1045+ setTargetedMessage ( unreadMessageIdToScrollTo ) ;
10451046 restartSetsMergeFuncRef . current ( ) ;
10461047 }
10471048 } ,
You can’t perform that action at this time.
0 commit comments