From c21c530c2aa0e1c78127128a93b9e8915d81aba2 Mon Sep 17 00:00:00 2001 From: Nguyen Long Nhat <27698189+torn4dom4n@users.noreply.github.com> Date: Sun, 7 Jan 2024 00:54:10 +0700 Subject: [PATCH] fix: error 404 --- packages/starlight-links-validator/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/starlight-links-validator/index.ts b/packages/starlight-links-validator/index.ts index aa31ef2..252926f 100644 --- a/packages/starlight-links-validator/index.ts +++ b/packages/starlight-links-validator/index.ts @@ -82,7 +82,7 @@ export default function starlightLinksValidatorPlugin( function throwPluginError(message: string): never { throw new AstroError( message, - `See the error report above for more informations.\n\nIf you believe this is a bug, please file an issue at https://github.com/HiDeoo/starlight-links-validator/issues/new/choose.`, + `See the error report above for more informations.\n\nIf you believe this is a bug, please file an issue at https://github.com/HiDeoo/starlight-links-validator/issues/new/choose`, ) }