fix eslint warning in UrlPreviewService.ts

This commit is contained in:
Hazelnoot 2025-05-05 09:06:45 -04:00
parent 129dfa9649
commit 2fb56bc4ea

View file

@ -67,7 +67,7 @@ export class UrlPreviewService {
@bindThis
public async handle(
request: FastifyRequest<{ Querystring: { url: string; lang?: string; } }>,
request: FastifyRequest<{ Querystring: { url?: string; lang?: string; } }>,
reply: FastifyReply,
): Promise<object | undefined> {
const url = request.query.url;