From 7ebc35c7aed88052a1e2c81376e0b53c46e264c0 Mon Sep 17 00:00:00 2001 From: "Mr.Hope" Date: Mon, 4 Apr 2022 22:01:01 +0800 Subject: [PATCH] web: Fix issue link in error suggestion --- web/src/giscus.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/giscus.ts b/web/src/giscus.ts index 411c9de3..84b09be0 100644 --- a/web/src/giscus.ts +++ b/web/src/giscus.ts @@ -9,7 +9,7 @@ import { createRef, ref, Ref } from 'lit/directives/ref.js'; export class GiscusWidget extends LitElement { private GISCUS_SESSION_KEY = 'giscus-session'; private GISCUS_ORIGIN = 'https://giscus.app'; - private ERROR_SUGGESTION = `Please consider reporting this error at https://github.com/laymonage/giscus/issues/new.`; + private ERROR_SUGGESTION = `Please consider reporting this error at https://github.com/giscus/giscus/issues/new.`; private __session = ''; private _iframeRef: Ref = createRef();