Results 13 comments of Kenny Heinonen

@jasonbodily For now I have solved this by checking whether task has custom `timeout` and then creating `retry` variable on the fly which equals to `timeout` + 5 minutes: ```python...

> This issue is not fixed in version 6.24.0 as proposed by @madskchristensen. The current cleanest workaround is to deactivate `useInfinite` and `useInfiniteQueryParam` from the global `output.override`. > > Example:...

Use case would be to determine whether to show automatic success notification. For like 99% of my endpoints I want to automatically show message when request is successful but there...

As a workaround, I did this in my main `.css` file: ```css /* Disable page scroll when cookie control modal is open */ body:has(.cookieControl__Modal) { @apply overflow-hidden; } ```

I had also custom root domain and solved it this way: NuxtHub Admin > Settings > Domains > Edit on Cloudfare 1. Add your domain here if it does not...

> Feel free to improve on this one https://gist.github.com/marr/5daecdde3ba633a5ddd08dc6012d17d2 Thanks, here's my version that I based on your code: ```vue import { useResizeObserver, useDebounceFn, type ResizeObserverEntry } from "@vueuse/core"; import...

Yep, I have `tw-animate-css` installed: ```json "dependencies": { "@nuxt/eslint": "^1.3.0", "@nuxtjs/i18n": "^9.5.3", "@tailwindcss/vite": "^4.1.3", "@vueuse/core": "^13.1.0", "class-variance-authority": "^0.7.1", "clsx": "^2.1.1", "eslint": "^9.24.0", "lucide-vue-next": "^0.487.0", "nuxt": "^3.16.2", "reka-ui": "^2.2.0", "tailwind-merge": "^3.2.0",...

I managed to find workaround by looking at reka-ui's documentation: https://reka-ui.com/docs/components/accordion#animating-content-size I copied this CSS from there to my `tailwind.css`: ```css /* styles.css */ .AccordionContent { overflow: hidden; } .AccordionContent[data-state="open"]...

Confirmed that animation now works with `[email protected]` 👍 closing this issue

Yep, for some components the animations do work (for example Sheet) and for some they don't. If you want workaround for Accordion, check my comment here how to fix the...