Kubo Satnik
Kubo Satnik
`TextIput` is selectable and it is possible to write the text inside, but some properties are not working eg. `secureTextEntry`, `defaultValue` nor `placeholder`. ``` "react": "16.5.1", "react-native": "^0.57.8", "react-native-dom": "^0.5.0",...
Check this out #1007
I have the same problem... It's lost immediately :( index.js ```js const appInsights = require('applicationinsights'); appInsights.setup(process.env.APPINSIGHTS_INSTRUMENTATIONKEY) .setAutoDependencyCorrelation(true, true) .setAutoCollectRequests(true) .setAutoCollectPerformance(true) .setAutoCollectExceptions(true) .setAutoCollectDependencies(true) .setAutoCollectConsole(true, true) .setUseDiskRetryCaching(true) .setSendLiveMetrics(true) .start(); console.log('CONTEXT', appInsights.getCorrelationContext()); //...
Hey @Mike-Fink-Jr . YES. We used `appInsights.wrapWithCorrelationContext` function that will provide the correlation context for us. So we created our own wrapper function like this: ```js const appInsights = require("applicationinsights");...
I have the same issue BUT importing SnapKit in my Swift package (module). This is my Package.swift ```swift // swift-tools-version: 5.6 // The swift-tools-version declares the minimum version of Swift...
This is still the case in 2024
So I was able to implement it using the `actor` class that's using thread-safe access. Something like this: ```swift actor OAuthManager { private var authState: OIDAuthState? { get { //...
I know it is 2024 already, but I didn't see it mentioned here anywhere. There is a parameter in OIDAuthState.authState: ```swift self.currentAuthorizationFlow = OIDAuthState.authState(byPresenting: request, presenting: vc, prefersEphemeralSession: true) {...
XCode 15.3 just came out and the message has changed: ``` unexpected service error: The Xcode build system has terminated due to an error. Build again to continue. Internal inconsistency...
Maye this can help (not exactly fastlane but still) https://github.com/actions/runner-images/issues/6642#issuecomment-1549660334