jvgeee

Results 29 comments of jvgeee

Removing the `#!` fixed the problem for me, cheers!

Have you tried adding `ng-if="clipboardataSorted.length"` (or whatever) so that the slider is initialised only when you have the data to load in? Seems like the dynamic slides would only work...

@robinheinze I think you misunderstand my point - I'm saying the comment at line 64 of `app/components/screen/screen.presets.ts` that says: ` // any of these things will make you scroll` should...

Still happening for me on the latest CLI (6.4) using expo in the IOS simulator; `react-native-reanimated` isn't a dependancy so no help there.

Having the same issue (albeit in React Native). On my end, I'm doing my configuration as per the docs: ``` Amplify.configure({ Auth: { identityPoolId: Config.AWS_IDENTITY_POOL_ID, region: Config.AWS_REGION, userPoolId: Config.AWS_USER_POOL_ID, userPoolWebClientId:...

FYI, this is an Amplify issue and not a NextJS one. I found a solution but it requires some extra libraries to make it work, basically replacing Amplify's authenticated fetch...

@carlosa54 unfortunately I'm already doing that ``` if (enableHermes) { def hermesPath = "../../node_modules/hermes-engine/android/"; debugImplementation files(hermesPath + "hermes-debug.aar") developmentImplementation files(hermesPath + "hermes-release.aar") qaImplementation files(hermesPath + "hermes-release.aar") releaseImplementation files(hermesPath + "hermes-release.aar")...

@naorpeled Quick one related to this, when I use types like this I'm getting an error when I add the `table` property as per the docs: ``` const DocumentClient =...

@naorpeled How close is this next update out of interest?