Andrei Dorobantu

Results 43 comments of Andrei Dorobantu

I don't want to change the order in the tooltip, I will add codepen for this.

Working example adapted from DawChihLiou blog https://hackernoon.com/building-an-airbnb-like-map-in-nextjs It seems that the difference between the two is that the one from Daw has another nested div. In the image the Overlays...

I couldn't reproduce the error with the turbo examples, the problem looks to me related to turborepo because if I build the app on Vercel without the build cache it...

The way i fixed this problem in my blog was by adding a `calc(100vw-17px)` for desktop with tailwind, but it breaks when using a tablet. The more complex solution would...

> @Aeet Maybe you can use a hook using the `getT` function to download in client-side the necessary translations without doing it in the fetching methods. > export default function...

> I don't know if there is a way to know if the current navigation comes from shallow routing, if so, maybe we could force the `I18nProvider` to download the...

Had the same bug because of a global.css setting for the text. Removing it make the text transparent again. ```css @layer base { body { @apply bg-background text-primary; } }...

adding selection:text-transparent to the input also fixes it. ~~Will add a PR for this~~ ```tsx className={cn( 'selection:text-transparent disabled:cursor-not-allowed', className, )} ```

Ok will add a PR to fix this in the new repo https://github.com/NiclasDev63/tiptap-extension-global-drag-handle