fix: well kinda (HOSTNAME in phoenix)

This commit is contained in:
KernelDeimos 2024-07-18 20:16:08 -04:00
parent eeda9fb568
commit 7043b9400c

View File

@ -22,7 +22,7 @@ export const CreateEnvProvider = ({ config }) => {
return { return {
USER: config['puter.auth.username'], USER: config['puter.auth.username'],
HOME: '/' + config['puter.auth.username'], HOME: '/' + config['puter.auth.username'],
HOSTNAME: config['puter.domain'], HOSTNAME: config['puter.domain'] ?? 'puter.com',
} }
}, },