From 30d0aa937b7a524c8293207b9c30a950dbd5fcda Mon Sep 17 00:00:00 2001 From: Sam Vargas Date: Wed, 4 Jan 2023 20:02:16 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20tracking=20code=E2=80=94remove=20async?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - using async and defer on script tags is considered an [antipattern](https://almanac.httparchive.org/en/2022/javascript#async-defer-module-and-nomodule) as the defer will be ignored. Defer is the prefered behaviour in most situations. --- components/forms/TrackingCodeForm.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/forms/TrackingCodeForm.js b/components/forms/TrackingCodeForm.js index 52df3bde..2b2fb96c 100644 --- a/components/forms/TrackingCodeForm.js +++ b/components/forms/TrackingCodeForm.js @@ -26,7 +26,7 @@ export default function TrackingCodeForm({ values, onClose }) { rows={3} cols={60} spellCheck={false} - defaultValue={``} readOnly