Max Heilmann
Max Heilmann
Okay, so I updated `@tauri-apps/api` to version 1.0.2 but the problem is sadly not fixed.
The link looks like this: `https://********/optimizations/1` (domain censored). This is happening in dev mode. I just realized something even more weirder, I have another link with a `target="_blank"` on a...
Well, I would need some time to create a reproduction repo, as the app I am working on is closed source, and I am under a NDA. I would need...
> Here is my solution (vue) > > ## Html > ``` > Contact us > ``` > > ## JavaScript > ```js > import { open } from '@tauri-apps/api/shell';...
> An entire HTML element in a translation value is crazy though, you could probably just translate the URL. Would it be smart to put an HTML element in the...
I didn't change anything. It happened after I installed the latest version.
A good Item builder I could recommend: https://pastebin.com/1XSLn1Ps
Another thing, when doing so: ```ts server.get( "/:id", { preHandler: () => server.auth([verifyUser]), schema: { params: Type.Object({ id: Type.String() }) }, }, ... ``` I do not get the typescript...
> Your `verifyUser` needs to extend `FastifyRequest` and `FastifyReply`. Like this?: ```ts export async function verifyUser( req: T, reply: U ) { ... ``` Because adding that did not fix...
> which overwrites schema, brokes some typescript generics, oppsie whopssie So its a bug in @fastify/auth? If so we should create an issue in that repo too