Skip to content

Commit

Permalink
Run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
chasefleming committed Feb 3, 2025
1 parent 3071c76 commit 340688f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,6 @@ export class NetworkManager {
* Since FCL does support dynamic chain additions.
*/
public async wallet_addEthereumChain(): Promise<null> {
return null;
return null
}
}
2 changes: 1 addition & 1 deletion packages/fcl-ethereum-provider/src/rpc/rpc-processor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export class RpcProcessor {
params as PersonalSignParams
)
case "wallet_addEthereumChain":
return await this.networkManager.wallet_addEthereumChain();
return await this.networkManager.wallet_addEthereumChain()
default:
return await this.gateway.request({
chainId,
Expand Down

0 comments on commit 340688f

Please sign in to comment.