mirror of
https://github.com/desktop/desktop
synced 2024-10-31 11:07:25 +00:00
Rename to a more descriptive root react container name
This commit is contained in:
parent
d047908061
commit
78b8830e68
2 changed files with 2 additions and 2 deletions
|
@ -32,7 +32,7 @@ ipcRenderer.on('url-action', (event, msg) => {
|
|||
const usersStore = new UsersStore(localStorage, tokenStore)
|
||||
usersStore.loadFromStore()
|
||||
|
||||
ReactDOM.render(<App usersStore={usersStore}/>, document.getElementById('content'))
|
||||
ReactDOM.render(<App usersStore={usersStore}/>, document.getElementById('desktop-app-container'))
|
||||
|
||||
async function addUserWithCode(code: string) {
|
||||
try {
|
||||
|
|
|
@ -4,6 +4,6 @@
|
|||
<meta charset='UTF-8'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='content'></div>
|
||||
<div id='desktop-app-container'></div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Reference in a new issue