We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 001924b commit 7aeefe9Copy full SHA for 7aeefe9
apps/remix-ide/src/app/plugins/script-runner-bridge.tsx
@@ -79,15 +79,15 @@ export class ScriptRunnerBridgePlugin extends Plugin {
79
})
80
81
this.plugin.on('fileManager', 'fileAdded', async (file: string) => {
82
- if (file === configFileName && file) {
+ if (file && file === configFileName) {
83
await this.loadCustomConfig()
84
await this.loadConfigurations()
85
this.renderComponent()
86
}
87
88
89
this.plugin.on('fileManager', 'fileSaved', async (file: string) => {
90
91
92
93
0 commit comments