diff --git a/packages/bridge-ui-v2/src/components/NotificationToast/NotificationToast.svelte b/packages/bridge-ui-v2/src/components/NotificationToast/NotificationToast.svelte index 24b2b108aa..7d59d911ea 100644 --- a/packages/bridge-ui-v2/src/components/NotificationToast/NotificationToast.svelte +++ b/packages/bridge-ui-v2/src/components/NotificationToast/NotificationToast.svelte @@ -94,7 +94,7 @@ --toastWidth: 339px; /* - We need to makes the surroundings dissapear in order + We need to makes the surroundings disappear in order to fully customize the toast with our own component */ --toastBackground: transparent; diff --git a/packages/bridge-ui-v2/src/libs/token/checkOwnership.test.ts b/packages/bridge-ui-v2/src/libs/token/checkOwnership.test.ts index 5f008db038..8ceee84dd9 100644 --- a/packages/bridge-ui-v2/src/libs/token/checkOwnership.test.ts +++ b/packages/bridge-ui-v2/src/libs/token/checkOwnership.test.ts @@ -187,7 +187,7 @@ describe('checkOwnership', () => { }); describe('General tests', () => { - it('should return an emtpy array if tokenType is null', async () => { + it('should return an empty array if tokenType is null', async () => { // When const result = await checkOwnership(TOKEN_ADDRESS, null, TOKEN_IDS, OWNER, CHAIN_ID); @@ -195,7 +195,7 @@ describe('checkOwnership', () => { expect(result).toEqual([]); }); - it('should return an emtpy array if tokenIds array is empty', async () => { + it('should return an empty array if tokenIds array is empty', async () => { // When const result = await checkOwnership(TOKEN_ADDRESS, TokenType.ERC721, [], OWNER, CHAIN_ID); diff --git a/packages/bridge-ui/src/signer/subscriber.spec.ts b/packages/bridge-ui/src/signer/subscriber.spec.ts index 8a22991c6c..340c7be89c 100644 --- a/packages/bridge-ui/src/signer/subscriber.spec.ts +++ b/packages/bridge-ui/src/signer/subscriber.spec.ts @@ -82,7 +82,7 @@ describe('subscribeToSigner', () => { // Next we test functions are called with the right arguments: expect(tokenService.getTokens).toHaveBeenCalledWith(address); - // We pass what's returned from the previos tokenService.getTokens + // We pass what's returned from the previous tokenService.getTokens // and that is the tokens array expect(userTokens.set).toHaveBeenCalledWith(tokens); diff --git a/packages/protocol/test/L1/TaikoL1.t.sol b/packages/protocol/test/L1/TaikoL1.t.sol index 537b00ff77..c79c58c443 100644 --- a/packages/protocol/test/L1/TaikoL1.t.sol +++ b/packages/protocol/test/L1/TaikoL1.t.sol @@ -285,7 +285,7 @@ contract TaikoL1Test is TaikoL1TestBase { // uint96 minAmount = conf.ethDepositMinAmount; uint96 maxAmount = conf.ethDepositMaxAmount; - // We need 8 depostis otherwise we are not processing them ! + // We need 8 deposits otherwise we are not processing them ! giveEthAndTko(Alice, 1e6 ether, maxAmount + 1 ether); giveEthAndTko(Bob, 0, maxAmount + 1 ether); giveEthAndTko(Carol, 0, maxAmount + 1 ether);