Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Mar 28, 2023
1 parent 76b3de0 commit fa99aa9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/page-contracts/src/Contracts/Call.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import type { SubmittableExtrinsic } from '@polkadot/api/types';
import type { ContractPromise } from '@polkadot/api-contract';
import type { ContractCallOutcome } from '@polkadot/api-contract/types';
import type { WeightV2 } from '@polkadot/types/interfaces';
import type { CallResult } from './types';
import type { CallResult } from './types.js';

import React, { useCallback, useEffect, useState } from 'react';

Expand Down Expand Up @@ -80,7 +80,7 @@ function Call ({ className = '', contract, messageIndex, onCallResult, onChangeM
},
...params
);
} catch (error) {
} catch {
return null;
}
});
Expand Down

0 comments on commit fa99aa9

Please sign in to comment.