From 3d4469a63fb127064b210356b29c89d5def45b55 Mon Sep 17 00:00:00 2001 From: christinaroise Date: Tue, 27 Aug 2024 09:41:45 +0200 Subject: [PATCH] fix lint --- studioShared/lib/token.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/studioShared/lib/token.ts b/studioShared/lib/token.ts index 79eaa5c08..19382d896 100644 --- a/studioShared/lib/token.ts +++ b/studioShared/lib/token.ts @@ -12,12 +12,12 @@ if (!token) { throw new Error( `Missing SANITY_API_TOKEN for ${ process.env.NODE_ENV === "development" ? "development" : "production" - } environment` + } environment`, ); } experimental_taintUniqueValue( "Do not pass the sanity API read token to the client.", process, - token + token, );