Skip to content

Commit 7415211

Browse files
committed
fix typos
1 parent 2f587e7 commit 7415211

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

packages/bridge-ui/src/components/Bridge/NFTBridgeComponents/IDInput/IDInput.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
disabled={isDisabled}
7070
bind:value={enteredIds}
7171
on:input={(e) => validateInput(e.target)}
72-
class="withValdiation w-full input-box py-6 pr-16 px-[26px] {typeClass} {$$props.class}" />
72+
class="withValidation w-full input-box py-6 pr-16 px-[26px] {typeClass} {$$props.class}" />
7373
{#if enteredIds && enteredIds.length > 0}
7474
<button class="absolute right-6 uppercase body-bold text-secondary-content" on:click={clearIds}>
7575
<Icon type="x-close-circle" fillClass="fill-primary-icon" size={24} />

packages/bridge-ui/src/components/Bridge/SharedBridgeComponents/AddressInput/AddressInput.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
placeholder="0x1B77..."
100100
bind:value={ethereumAddress}
101101
on:input={validateAddress}
102-
class="w-full input-box withValdiation py-6 pr-16 px-[26px] font-bold placeholder:text-tertiary-content {classes} !border-primary-border-dark" />
102+
class="w-full input-box withValidation py-6 pr-16 px-[26px] font-bold placeholder:text-tertiary-content {classes} !border-primary-border-dark" />
103103
{#if ethereumAddress}
104104
<button class="absolute right-6 uppercase body-bold text-secondary-content" on:click={clearAddress}>
105105
<Icon type="x-close-circle" fillClass="fill-primary-icon" size={24} />

packages/bridge-ui/src/styles/components.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
focus:!shadow-[0_0_0_3px_#E81899];
8787
}
8888

89-
.input-box.withValdiation {
89+
.input-box.withValidation {
9090
@apply outline-none;
9191
}
9292

packages/protocol/test/shared/vault/ERC20Vault.t.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ contract TestERC20Vault is CommonTest {
4848
register("bridged_erc20", address(new BridgedERC20(address(tVault))));
4949
register("taiko", address(taikoInbox));
5050

51-
// TODO(fix): shall we use "tValut" below?
51+
// TODO(fix): shall we use "tVault" below?
5252
tUSDC = deployBridgedERC20(address(eVault), randAddress(), 100, 18, "USDC", "USDC coin");
5353
tUSDT = deployBridgedERC20(address(eVault), randAddress(), 100, 18, "USDT", "USDT coin");
5454
tStETH = deployBridgedERC20(

packages/snaefell-ui/src/styles/components.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
focus:!shadow-[0_0_0_3px_#E81899];
8787
}
8888

89-
.input-box.withValdiation {
89+
.input-box.withValidation {
9090
@apply outline-none;
9191
}
9292

packages/taikoon-ui/src/styles/components.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
focus:!shadow-[0_0_0_3px_#E81899];
8787
}
8888

89-
.input-box.withValdiation {
89+
.input-box.withValidation {
9090
@apply outline-none;
9191
}
9292

packages/ui-lib/src/lib/styles/components.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
focus:!shadow-[0_0_0_3px_#E81899];
8787
}
8888

89-
.input-box.withValdiation {
89+
.input-box.withValidation {
9090
@apply outline-none;
9191
}
9292

0 commit comments

Comments
 (0)