Quentin Widlocher
Quentin Widlocher
@davidsandoz it should be ok now ? I cannot test right now but I don't think I forgot anything
Yes, I use a smaller version of the logo and upscaled it, that's why it's a bit blurry. One should use the .svg version and generate proper sizes of icons....
Thank you both, I'll edit my PR tomorrow with the right icons 😉 Now that you're here, what would you think of a PR with web sharing for the "Share"...
I was thinking of implementing the [Web Share API](https://developer.mozilla.org/en-US/docs/Web/API/Web_Share_API). It supports basic copy/paste as we can see with the official wordle.
It's well supported on mobile (Chrome + Firefox) and it's progressive enhancement, meaning it can be added only on devices supporting the feature, old browsers will still display the copy/paste...
Mince, c'est bien moins supporté que prévu si tous les navigateurs et OS ont leur façons de partager le contenu. Comme dit, je pense que si on active cette fonctionnalité...
Thanks @monokee for the last commit, I think it's perfect to get an idea of the framework and to start using it. I consider this issue closed I think :blush:
So, for the record, when I use it like this : ```ts export async function loader({ request }: Route.LoaderArgs) { const result = await parseFormData(request, searchFormSchema); } ``` The types...
Now that I tried working with this a bit more, it appears that errors aren't populated in my `` when using this way of returning parsed form data. ```ts const...