Fish

Results 10 comments of Fish

I am running in to this as well. To be honest the Codecov sign up / Github connection / setup process leaves a lot to be desired.

This is strange behaviour. Was there a specific intention behind this design?

Really keen to see this land some time

It might be worth having a think about the the new RFC the team at Next has created and where this library may sit within that proposal. https://nextjs.org/blog/layouts-rfc I am...

Nope. I am switching a large enterprise app out to next-auth. The team over there seems more receptive to suggestions and familiar with what is happening in the Next.js community....

I realise everyone is busy but the fact that this package still does not have types is kind of a pain in the ass.

Interested in how people are going about this too!

This would be really useful!

Really looking forward to this! +1

You can use dynamic imports to get around this issue. ``` import dynamic from "next/dynamic"; const DateCountdown = dynamic(() => import("react-date-countdown-timer"), { ssr: false, }); export default function Home() {...