diff --git a/.env.local.example b/.env.local.example
index 99fe71286..5b058d208 100644
--- a/.env.local.example
+++ b/.env.local.example
@@ -4,4 +4,4 @@ CMS_ENVIRONMENT="development"
CMS_URL="https://eu-graphql.contentstack.com/stacks/${CMS_API_KEY}?environment=${CMS_ENVIRONMENT}"
CMS_PREVIEW_URL="https://graphql-preview.contentstack.com/stacks/${CMS_API_KEY}?environment=${CMS_ENVIRONMENT}";
CMS_PREVIEW_TOKEN=""
-ADOBE_SCRIPT_SRC="https://mocked-url.se/tracking-script.js"
\ No newline at end of file
+ADOBE_SCRIPT_SRC=""
\ No newline at end of file
diff --git a/.prettierignore b/.prettierignore
index 5d6fa4088..03c92fafc 100644
--- a/.prettierignore
+++ b/.prettierignore
@@ -3,6 +3,7 @@ public/_static
# Files
-.prettierignore
app/core.css
-app/scandic.css
\ No newline at end of file
+app/scandic.css
+.env.local.example
+.prettierignore
\ No newline at end of file
diff --git a/components/Current/AdobeScript.tsx b/components/Current/AdobeScript.tsx
index 949cdb567..35e7803d4 100644
--- a/components/Current/AdobeScript.tsx
+++ b/components/Current/AdobeScript.tsx
@@ -3,5 +3,7 @@ import { env } from "@/env/server"
import Script from "next/script"
export default function AdobeScript() {
- return env.ADOBE_SCRIPT_SRC ? : null
+ return env.ADOBE_SCRIPT_SRC ? (
+
+ ) : null
}