jaaywags

Results 31 comments of jaaywags

> Switching to a standard cache of cookies and returning them in the get request solved it for me. How do you do this? Sorry if that is a dumb...

I am also having this issue on iOS. React Native Version: 0.71.10 React Native Share Version: 9.2.1 Running on physical device: iPhone 12 Pro Max 16.5.1

Was this part of the 0.74.4 or 0.74.5 release? I am having (I think) the same issue in my React Native Expo app. ```package.json "expo": "~51.0.22" "react-native": "0.74.5", (just upgraded...

I don't have a good solution but I have a solution. I followed the ios instructions and at the bottom of the `override func viewDidLoad() {` function, I added this...

Okay, I have a nice clean solution now. I have not tested it with much though. I really just needed a way for my app to show when I share...

I know this is a bit unrelated, but I was getting the error you mentioned > 'react/performance/timeline/PerformanceEntryReporter.h' file not found I was able to fix this by removing the dependency,...

@Kudo I am not sure. I tried reproducing it with a fresh project but could not. Here is what changed in my package.json though. ```diff { "name": "myapp", "main": "expo-router/entry",...

@Kudo I think I have repo steps now! [The repo I reproduced it in](https://github.com/jaaywags/expo-51-issue) Env: - M3 Macbook on latest - npm 10.5.2 - node v20.13.1 - I use volta...

I still see this issue too. For this, I get two different results. ```javascript const date1 = dayjs(1744974180000).toDate().getTimezoneOffset(); const date2 = dayjs().toDate().getTimezoneOffset(); console.log(offset1); // 300 console.log(offset2); //360 ``` Here is...