ToyboxZach
ToyboxZach
Every time you register a callback it gets added to a generic "changed" callback, that means that every single callback needs to be called on every single change to a...
I was having the similar problems. I ended up having to do pretty hefty changes to make sure we aren't oversubscribing and that we only get change notifications when we...
I don't have the time to thoroughly validate it across all use cases or maintain it outside of times my product has a bug, but I can definitely open up...
Also do you have resources explaining how to run the tests? "npx mocha" doesn't seem to work for me like I would expect
Merging in master resolved this. For clarification on what the problem is in master: Every time you register a callback it gets added to a generic "changed" callback, that means...
The part that causes over subscriptions is in useTracker const meteorDataDep = new Tracker.Dependency(); will be called every render loop. Which means you are just stacking dependencies. My PR https://github.com/TheRealNate/meteor-react-native/pull/93/files#diff-2633dadb453d450392035d1d503a0b4cc6122e23781a792b0af576dfa38e5707...
I expected it to be from just updating our server, but I was getting this logs about 10 hours after I updated the server. I don't know why anyone would...
Its pretty hacky, but I was able to do it with this package by setting Shopify.Context.API_KEY Shopify.Context.API_SECRET_KEY and Shopify.Context.SCOPES Before calling the relevant auth functions And for offline token, just...
I primarily work off of the offline tokens so I have this helper function, I had appOne working originally then added appTwo and privateApp later which is why I use...
1. ``` Shopify.Context.API_KEY = APPONEAPIKEY or APPTWOAPIKEY Shopify.Context.API_SECRET_KEY = APPONEAPISECRETKEY or APPTWOAPISECRETKEY Shopify.Context.SCOPES = [.. list out correct scopes ] const session = await Shopify.Utils.loadOfflineSession(STORE_NAME); onst authRoute = await Shopify.Auth.beginAuth(...