Luke Gordon

Results 8 comments of Luke Gordon

Thanks for leaving the fix @rue-bwebb , this helped me out significantly 🙌

For anyone that stumbles on this in the future, you can leverage the `._flatpickr` object on an element to access the flatpickr instance & copy the value using `._flatpickr.setDate`. **Note:**...

@brandly if you haven't solved this yet, you can accomplish this by doing something like this (notice the .* prefix): ``` [ignore] .*/node_modules/electron-packager/test/fixtures/infer-malformed-json/package.json ```

For others that hit this, it's pretty easy to work around by overwriting the authorize_url. Example for those using Devise: ```ruby config.omniauth :linkedin, ENV['LINKEDIN_APP_ID'], ENV['LINKEDIN_APP_SECRET'], { scope: 'r_liteprofile,r_emailaddress', authorize_url: "https://www.linkedin.com/oauth/v2/authorization?response_type=code&client_id=#{ENV['LINKEDIN_APP_ID']}"...

I hit this error with the above as well. If I removed the --bun flag it works just fine: ```sh bunx shadcn@latest init ```

Ran into this today and was able to isolate it down to the 0.9.0 tag, specifically this line: https://github.com/DamianEdwards/MiniValidation/compare/v0.8.0...v0.9.0#diff-70d1f3969dd03f42500b6575dacf33b055c6da7c81890423a733cb88abbd7210R203 Looks like the distinct method isn't working as expected. You can...

This appears to be somewhat related to https://github.com/sveltejs/kit/issues/10876 The issue is the preload functionality is initializing the app's layout before the admin layout unmounts. This causes the app's children snippet...

It'd be great if we call this out on the component examples or have them follow the default behavior. I was wondering why my local install was not matching the...