mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-03 16:38:22 +03:00
Removed env variable for default page
no issue - Removes env variable which could be previously set for local development in favor of `process.env.NODE_ENV` check for development version
This commit is contained in:
parent
08a4611ee3
commit
1049955007
@ -51,7 +51,7 @@ export default class ParentContainer extends React.Component {
|
||||
// Loads default page and popup state for local UI testing
|
||||
if (process.env.NODE_ENV === 'development') {
|
||||
return {
|
||||
page: process.env.REACT_APP_DEFAULT_PAGE || 'signup',
|
||||
page: 'signup',
|
||||
showPopup: true
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user