Hi, I've set up my project to open the help center when a button is pressed. My script is fairly simple
await ZendeskSdk.InitializeAsync(config =>{ config.ChannelId = CHANNEL_ID; config.Language = ZendeskLanguage.English; config.MetadataValidationEnabled = true; });await ZendeskSdk.Instance.Home.ShowHomeAsync();
Works fine on Android and in iOS v16.6, but not on v18.5; the user gets sent to the chat instead.
Any ideas?