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

chore: fix some comments #2514

Open
wants to merge 1 commit 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
2 changes: 1 addition & 1 deletion cypress/e2e/specs/swap.e2e.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ describe(`Swap ${NETWORK}`, () => {
cy.intercept('GET', '**/routes?**').as('get-route')
cy.wait('@get-route', { timeout: 20000 }).its('response.statusCode').should('be.oneOf', [200, 404, 408])
})
it('verify the defaul pair', () => {
it('verify the default pair', () => {
SwapPage.getCurrentTokenIn(text => {
expect(text).to.equal('ETH')
})
Expand Down
2 changes: 1 addition & 1 deletion src/hooks/kyberdao/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ export function useKyberDaoStakeActions() {
[addTransactionWithType, stakingContract],
)
const undelegate = useCallback(
// address here alway should be user's address
// address here always should be user's address
async (address: string) => {
if (!stakingContract) {
throw new Error(CONTRACT_NOT_FOUND_MSG)
Expand Down
2 changes: 1 addition & 1 deletion src/state/mint/proamm/hooks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export function useProAmmMintActionHandlers(
}
}

// Must be high enough to cover reccommend range
// Must be high enough to cover recommend range
// But must be low enough to not matching wrong ranges
const MAX_DIFF_DETECT_TICK_RANGE: {
[amount in FeeAmount]: number
Expand Down