Skip to content

Commit 1109872

Browse files
committed
fix events
1 parent f630d06 commit 1109872

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

apps/remix-ide/src/app/plugins/parser/code-parser.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -167,19 +167,19 @@ export class CodeParser extends Plugin {
167167
await this.handleChangeEvents()
168168
})
169169

170-
this.on('solidity', 'compilerQueryParamsUpdated', async (file) => {
170+
this.on('solidity', 'compilerQueryParamsUpdated', async () => {
171171
await this.call('editor', 'discardLineTexts')
172172
await this.call('editor', 'clearErrorMarkers', [this.currentFile])
173173
await this.handleChangeEvents()
174174
})
175175

176-
this.on('solidity', 'compilerAppParamsUpdated', async (file) => {
176+
this.on('solidity', 'compilerAppParamsUpdated', async () => {
177177
await this.call('editor', 'discardLineTexts')
178178
await this.call('editor', 'clearErrorMarkers', [this.currentFile])
179179
await this.handleChangeEvents()
180180
})
181181

182-
this.on('solidity', 'configFileChanged', async (file) => {
182+
this.on('solidity', 'configFileChanged', async () => {
183183
await this.call('editor', 'discardLineTexts')
184184
await this.call('editor', 'clearErrorMarkers', [this.currentFile])
185185
await this.handleChangeEvents()

0 commit comments

Comments
 (0)