in index.tsx [61:68]
componentDidMount() {
const logName = localStorage.getItem('logName')
const log = localStorage.getItem('log')
runInAction(() => {
this.discussionId = logName ?? 'localhost.1'
this.logs = log && [JSON.parse(log)] || sample
})
}