From 6a573f70452a58faf2e1b8c0a3ab05241e70ef4d Mon Sep 17 00:00:00 2001 From: Regalijan Date: Tue, 19 Dec 2023 16:30:20 -0500 Subject: [PATCH] Replace double quotes with single quotes --- app/routes/report.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/routes/report.tsx b/app/routes/report.tsx index 03ce4c8..801e7f6 100644 --- a/app/routes/report.tsx +++ b/app/routes/report.tsx @@ -363,11 +363,11 @@ export default function () { {` function onTurnstileError(code) { const messages = { - 110500: "Your browser is too old to complete the captcha, please update it.", - 110510: "Something unexpected happened, please try disabling all extensions and refresh the page. If this does not solve the problem, use a different browser.", - 110600: "Failed to solve the captcha, please refresh the page to try again.", - 200010: "Invalid cache, please clear your cache and site data in your browser's settings.", - 200100: "Your device's clock is wrong, please fix it.", + 110500: 'Your browser is too old to complete the captcha, please update it.', + 110510: 'Something unexpected happened, please try disabling all extensions and refresh the page. If this does not solve the problem, use a different browser.', + 110600: 'Failed to solve the captcha, please refresh the page to try again.', + 200010: 'Invalid cache, please clear your cache and site data in your browser's settings.', + 200100: 'Your device's clock is wrong, please fix it.', }; const message = messages[code];