Skip to content

Commit f91761a

Browse files
CalebBarnesmrstorkserhalpkhendrikse
authored
fix: account envs not showing up in site build (#6122)
* fix: remove siteId from getAccountEnv getEnvelope call It looks like this siteId was added here accidentally. This causes site builds to not include account envs because getEnvelope will only get the envvars for that specific site instead of the account. * Update packages/config/src/env/main.ts Co-authored-by: Mateusz Bocian <[email protected]> --------- Co-authored-by: Mateusz Bocian <[email protected]> Co-authored-by: Philippe Serhal <[email protected]> Co-authored-by: Karin Hendrikse <[email protected]>
1 parent 4866964 commit f91761a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

packages/config/src/env/main.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -185,8 +185,7 @@ const getAccountEnv = async function ({
185185
context?: string
186186
}) {
187187
if (siteInfo.use_envelope) {
188-
const envelope = await getEnvelope({ api, accountId: siteInfo.account_slug, siteId: siteInfo.site_id, context })
189-
return envelope
188+
return await getEnvelope({ api, accountId: siteInfo.account_slug, context })
190189
}
191190
const { site_env: siteEnv = {} } = accounts.find(({ slug }) => slug === siteInfo.account_slug) || {}
192191
return siteEnv

0 commit comments

Comments
 (0)