remove localStorage

pull/862/head
aniket-engg 4 years ago
parent b109c28462
commit 5131f348ec
  1. 5
      apps/remix-ide/src/app/tabs/analysis-tab.js

@ -28,10 +28,7 @@ class AnalysisTab extends ViewPlugin {
}
render () {
const listOfPlugins = localStorage.getItem('workspace')
// Reset state if plugin is deactivated
if (!listOfPlugins.includes('solidityStaticAnalysis')) this.staticanalysis = null
if (!this.staticanalysis) this.staticanalysis = new StaticAnalysis(this.registry, this)
this.staticanalysis = new StaticAnalysis(this.registry, this)
this.staticanalysis.event.register('staticAnaysisWarning', (count) => {
if (count > 0) {
this.emit('statusChanged', { key: count, title: `${count} warning${count === 1 ? '' : 's'}`, type: 'warning' })

Loading…
Cancel
Save