From de792fc1d6d6cb1b7545e40efb7432342fb0aa5d Mon Sep 17 00:00:00 2001 From: Hugh Date: Tue, 10 Dec 2024 18:07:59 +0000 Subject: [PATCH] Simplifying outgoing links --- packages/procaptcha-pow/src/components/ProcaptchaWidget.tsx | 1 - packages/procaptcha-react/src/components/ProcaptchaWidget.tsx | 1 - packages/web-components/src/CaptchaPlaceholder.tsx | 1 - packages/web-components/src/WidgetConstants.ts | 2 +- 4 files changed, 1 insertion(+), 4 deletions(-) diff --git a/packages/procaptcha-pow/src/components/ProcaptchaWidget.tsx b/packages/procaptcha-pow/src/components/ProcaptchaWidget.tsx index 7e3bbc0454..8ff7bbb277 100644 --- a/packages/procaptcha-pow/src/components/ProcaptchaWidget.tsx +++ b/packages/procaptcha-pow/src/components/ProcaptchaWidget.tsx @@ -138,7 +138,6 @@ const Procaptcha = (props: ProcaptchaProps) => { href={WIDGET_URL} target="_blank" aria-label={WIDGET_URL_TEXT} - rel="noreferrer" >
diff --git a/packages/procaptcha-react/src/components/ProcaptchaWidget.tsx b/packages/procaptcha-react/src/components/ProcaptchaWidget.tsx index 9581a8a4d3..7bf63b9296 100644 --- a/packages/procaptcha-react/src/components/ProcaptchaWidget.tsx +++ b/packages/procaptcha-react/src/components/ProcaptchaWidget.tsx @@ -148,7 +148,6 @@ const ProcaptchaWidget = (props: ProcaptchaProps) => { href={WIDGET_URL} target="_blank" aria-label={WIDGET_URL_TEXT} - rel="noreferrer" >
diff --git a/packages/web-components/src/CaptchaPlaceholder.tsx b/packages/web-components/src/CaptchaPlaceholder.tsx index 60e2b68bc7..ae822e116d 100644 --- a/packages/web-components/src/CaptchaPlaceholder.tsx +++ b/packages/web-components/src/CaptchaPlaceholder.tsx @@ -101,7 +101,6 @@ export const ProcaptchaPlaceholder = ({ href={WIDGET_URL} target="_blank" aria-label={WIDGET_URL_TEXT} - rel="noreferrer" >
diff --git a/packages/web-components/src/WidgetConstants.ts b/packages/web-components/src/WidgetConstants.ts index ba0ab7ca2f..d31a9fd476 100644 --- a/packages/web-components/src/WidgetConstants.ts +++ b/packages/web-components/src/WidgetConstants.ts @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. export const WIDGET_URL = - "https://prosopo.io/?ref=prosopo.io&utm_campaign=widget&utm_medium=checkbox#features"; + "https://prosopo.io"; export const WIDGET_URL_TEXT = "Visit prosopo.io to learn more about the service and its accessibility options."; export const WIDGET_INNER_HEIGHT = 74;