Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Missed a lint parameter #13

Merged
merged 1 commit into from
Mar 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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