Jordan Lambrecht

Results 20 comments of Jordan Lambrecht

AHA! Got it. Needs to be imported dynamically if you're using nextjs. ``` import dynamic from 'next/dynamic' const ReactTwitchEmbedVideo = dynamic(() => import('react-twitch-embed-video'), { ssr: false, }) ``` I'm going...

@funwithtriangles Could you help me get segments to work with this? I can't seem to figure it out. I'm trying to get it to play all frames on the first...

Confirmed, this issue still persists with v2.0.4-dev.

Confirmed this issue still persists. It looks like the culprit is on line 205 of filemanager.py: `size = str(int(int(currentFile[4]) / float(1024)))` The file size is converted to an integer. @whattheserver...

Looks like we’re not the only ones that experience this 🙂: https://github.com/repo-utils/parse-github-repo-url @whattheserver this should be a pretty quick fix, right?

@Gamote Any ideas?

@michax @mattvague @PatrickDesign Sorry for the pings, but this is pretty mission-critical for me

@PatrickDesign Ha, I probably need to separate those components o.O The animation will play just fine. Everything works with no errors. The only issue is the segments part. It simply...

Like this? Because no dice if so =/ ``` import lottie from 'lottie-web' interface LottieProps { animationData: any width: number height: number onLoopComplete: any initialSegment: any } const firstLoopSegment =...

AHA! I got it! ``` import lottie from 'lottie-web' interface LottieProps { animationData: any width: number height: number } const Lottie = ({ animationData }: LottieProps) => { const element...