Skip to content

Commit 381280d

Browse files
committed
fix linting
1 parent 701ca38 commit 381280d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/remix-ide/src/blockchain/blockchain.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -787,7 +787,7 @@ export class Blockchain extends Plugin {
787787
)
788788

789789
web3Runner.event.register('transactionBroadcasted', (txhash, isUserOp) => {
790-
if (isUserOp) _paq.push(['trackEvent', 'udapp', 'safeSmartAccount', `txBroadcastedFromSmartAccount`])
790+
if (isUserOp) _paq.push(['trackEvent', 'udapp', 'safeSmartAccount', `txBroadcastedFromSmartAccount`])
791791
this.executionContext.detectNetwork(async (error, network) => {
792792
if (error || !network) return
793793
if (network.name === 'VM') return
@@ -996,7 +996,7 @@ export class Blockchain extends Plugin {
996996
if (!tx.timestamp) tx.timestamp = Date.now()
997997
const timestamp = tx.timestamp
998998
this._triggerEvent('initiatingTransaction', [timestamp, tx, payLoad])
999-
if (fromSmartAccount) _paq.push(['trackEvent', 'udapp', 'safeSmartAccount', `txInitiatedFromSmartAccount`])
999+
if (fromSmartAccount) _paq.push(['trackEvent', 'udapp', 'safeSmartAccount', `txInitiatedFromSmartAccount`])
10001000
try {
10011001
this.txRunner.rawRun(tx, confirmationCb, continueCb, promptCb, async (error, result) => {
10021002
if (error) {

0 commit comments

Comments
 (0)