Skip to content

Commit

Permalink
Missed a lint parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
chalabi2 committed Mar 26, 2023
1 parent 2d5ccfa commit 07027ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/FeeSelector/FeeSelector.css
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
}
.loader,
.loader:before {
--_g: linear-gradient(#f0f0f0 0 0) 50%; /* update the color here */
--_g: linear-gradient(#4d4d4d 0 0) 50%; /* update the color here */
background:
var(--_g)/34% 8% space no-repeat,
var(--_g)/8% 34% no-repeat space;
Expand Down
2 changes: 1 addition & 1 deletion src/services/transfer/gravity-bridge-transferer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ function isSendCosmosResponse (response: unknown): response is SendToCosmosRespo
return (response as SendToCosmosResponse).transactionHash !== undefined;
}

async function getGasPrices(): Promise<{ slow: number; fast: number; instant: number }> {
async function getGasPrices (): Promise<{ slow: number; fast: number; instant: number }> {
try {
const response = await axios.get(`https://api.etherscan.io/api?module=gastracker&action=gasoracle&apikey=${process.env.REACT_APP_ETHERSCAN_API_KEY}`);
const { suggestBaseFee, SafeGasPrice, FastGasPrice } = response.data.result;
Expand Down

0 comments on commit 07027ec

Please sign in to comment.