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

Fix typos #2111

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export class TransactionReviewWorker implements ITransactionReviewWorker {
await this.labelsStore.set("updatedAt", updatedAt)
} catch (error) {
// ignore error - will retry next time
console.warn("Error fetching trasnaction review labels", error)
console.warn("Error fetching transaction review labels", error)
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export const warningMap: Record<
recipient_is_black_listed: {
title: "Recipient on unsafe list",
description:
"You are sending to an unsafe contract that is blacklisted for the the following reason: [...].",
"You are sending to an unsafe contract that is blacklisted for the following reason: [...].",
},
spender_is_black_listed: {
title: "Spender on unsafe list",
Expand All @@ -94,7 +94,7 @@ export const warningMap: Record<
account_state_change: {
title: "Loss of funds due to ownership change",
description:
"You’re about to change the owner of your account. If you proceed with the transaction, you loose access to your funds. We strongly recommend that you reject the transaction.",
"You’re about to change the owner of your account. If you proceed with the transaction, you lose access to your funds. We strongly recommend that you reject the transaction.",
},
amount_mismatch_too_low: {
title: "Poor trade/swap of tokens",
Expand Down