Pete

Results 16 comments of Pete

Hey @ghostknow - Pretty sure I just ran into this exact same issue on iPhone X's. Looking at the package's default props, it's defaulting videos to a particular size which...

Ah :) Didn't realize this was 11 months old. Do like the capability that it could add and thank you for the work! @cornedor did you consider this addition?

FYI this worked for me: ```js import Head from "next/head"; export default function ScrollRestorationDisabler() { return ( {/* Tell the browser to never restore the scroll position on load */}...

Did you ever see blank screenshots and get around that issue? Thank you for sharing! @testerez ^

@ibnekhan - Can you be a bit more descriptive about what you're referring to here? Not sure I follow.

@ibnekhan have you tried this on a physical device not the simulator? I've noticed the copy/paste on an android simulator is rather fragile to the point where it's exhibited different...

Curious, I'll see if I can spin up an example and look to see what can be done to solve it. @ibnekhan

Just hit this too. My prismic content type was labeled: "blog_post", I then attempted to use a config for my page as: ``` { type: 'blog_post', path: '/blog/', match: '/blog/:uid',...

You bet! Schema: ``` javascript MemberSchema = new Schema({ memberName: String, memberDeposit: {type: Currency}, // doing an $inc on this memberWithdrawal: {type: Currency}, // doing an $inc on this memberBalance:...

I should also say that my initial expectation was that all values marked as currency were multiplied out by 100 (not just numbers); and was hoping that when doing an...