async function renderTurnstile(){
let turnstileToken;
const renderParams = {
sitekey: CLDFLR_SITEKEY_TO_USE,
callback: async function(token: any) {
turnstileToken = token;
turnstileTokenStore.set(token);
await tick();
console.log(Challenge Success ${token});
},
theme: 'dark',
appearance: 'interaction-only'
};import { CLDFLR_SITEKEY_TO_USE } from '../routes/DevOrProd.ts'