Skip to content
This repository was archived by the owner on Jan 7, 2025. It is now read-only.

Commit dbb3b39

Browse files
committed
lint
1 parent d365f68 commit dbb3b39

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

url.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
// environment. By default, `LIVE=1` will connect to the devnet cluster.
33

44
import {clusterApiUrl, Cluster} from '@solana/web3.js';
5-
import dotenv from 'dotenv'
5+
import dotenv from 'dotenv';
66

77
function chooseCluster(): Cluster | undefined {
88
dotenv.config();
99
if (!process.env.LIVE) return;
1010
switch (process.env.CLUSTER) {
11-
case 'devnet':
12-
case 'testnet':
13-
case 'mainnet-beta': {
11+
case 'devnet':
12+
case 'testnet':
13+
case 'mainnet-beta': {
1414
return process.env.CLUSTER;
1515
}
1616
}

0 commit comments

Comments
 (0)