From c882e2ff4473276abbdf1cd51f43588832145009 Mon Sep 17 00:00:00 2001 From: Dan Burcaw <92536821+namidan@users.noreply.github.com> Date: Fri, 9 Aug 2024 18:16:46 -0600 Subject: [PATCH] Update prebuild:basic-react.js (#6) --- scripts/prebuild:basic-react.js | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/prebuild:basic-react.js b/scripts/prebuild:basic-react.js index 342f012..7f87441 100644 --- a/scripts/prebuild:basic-react.js +++ b/scripts/prebuild:basic-react.js @@ -21,7 +21,6 @@ try { let code = fs.readFileSync(specificFilePath, 'utf-8'); code = code.replace('YOUR_APP_PLATFORM_ID', `${APP_PLATFORM_ID}`); code = code.replace('YOUR_PLACEMENT_LABEL', `${APP_PAYWALL_LABEL}`); - code = code.replace('namiCommands: []', `namiCommands: ["useStagingAPI"]`); fs.writeFileSync(specificFilePath, code); console.log(`Injected APP_PLATFORM_ID and APP_PAYWALL_LABEL into ${specificFilePath}`);