Skip to content

Commit 7324a07

Browse files
committed
fix linting
1 parent 2370256 commit 7324a07

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

libs/remix-ui/helper/src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ export * from './lib/components/custom-dropdown'
66
export * from './lib/components/custom-tooltip'
77
export * from './lib/components/feedback'
88
export * from './lib/components/solScanTable'
9-
export * from './lib/solidity-scan'
9+
export * from './lib/solidity-scan'
1010
export type { CompilerReport } from './types/compilerTypes'
11-
export * from './types/solidity-scan'
11+
export * from './types/solidity-scan'

libs/remix-ui/tabs/src/lib/remix-ui-tabs.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ export const TabsUI = (props: TabsUIProps) => {
323323

324324
try {
325325
const path = active().substr(active().indexOf('/') + 1, active().length)
326-
326+
327327
if (tabsState.currentExt === 'js' || tabsState.currentExt === 'ts') {
328328
const content = await props.plugin.call('fileManager', 'readFile', path)
329329
await props.plugin.call('scriptRunnerBridge', 'execute', content, path)
@@ -343,7 +343,7 @@ export const TabsUI = (props: TabsUIProps) => {
343343
setCompileState('idle')
344344
return
345345
}
346-
346+
347347
props.plugin.once(compilerName, 'compilationFinished', (fileName, source, languageVersion, data) => {
348348
const hasErrors = data.errors && data.errors.filter(e => e.severity === 'error').length > 0
349349

0 commit comments

Comments
 (0)