Jared Dahlke

Results 26 comments of Jared Dahlke

> Hey! I'm not entirely sure what is going on but I think it should work like this: > > ``` > const promise = axios.patch(url, params) > > toast.promise(promise,...

as a new Formik user I just had to downgrade from 2.1.5 to 2.1.4 for validateOnMount={true} to actually work/fill the error object. Why was it removed in 2.1.5? amazing tool...

yeah i just noticed it was validating all fields every keystroke when i throttled my CPU down 4x and put some console logs in my validation function. this is my...

@ChrisAlvares ``` I believe I am having this same issue ``soap:ClientUnmarshalling Error: cvc-complex-type.2.4.a: Invalid content was found starting with element '{"https://adwords.google.com/api/adwords/cm/v201809":query}'. One of '{"https://adwords.google.com/api/adwords/cm/v201809":serviceSelector}' is expected. ` }, body: `soap:ClientUnmarshalling...

has anyone figured out how to center the graph , given that the left margin is not changeable?

I am having a similar issue ``` "react": "16.13.1", "react-dom": "16.13.1", "@tanstack/react-location": "^3.7.4", ```` ``` const rlRoutes = [ { path: 'one', element: ( page 1 go to page 2...

i just figured out it was not working because I had a useQuery in the same component that i had my

just make a standalone node server for this. unfortunately nextjs doesnt seem to help with websockets much

i'm getting the same error using `"next": "^13.4.13",` i have this hook: ``` import { useSearchParams } from "next/navigation"; import { useRouter } from "next/router"; export const useCustomSearchparams = ()...

ended up figuring this out, but I had to use a custom server. here's how i did it: https://github.com/Jared-Dahlke/Nextjs-lightning-auth-template The custom server causes some problems with getServerSideProps and env variables,...