chore: fix build issues (#1274)

This commit is contained in:
Ralph Khreish
2025-10-04 19:24:31 +02:00
committed by GitHub
parent f7646f41b5
commit 4f984f8a69
4 changed files with 9 additions and 3 deletions

View File

@@ -19,10 +19,10 @@ const getBuildTimeEnvs = () => {
for (const [key, value] of Object.entries(process.env)) {
if (key.startsWith('TM_PUBLIC_')) {
// Return the actual value, not JSON.stringify'd
envs[key] = value || '';
}
}
return envs;
};