Skip to content

Commit aa21514

Browse files
authored
Fix Typographical Errors in CSS and TypeScript Files (#2561)
* Update find-nonchecksummed-addresses.ts * Update networks-config.ts * Update productNavigation.module.css * Update megaMenu.module.css
1 parent 87c2887 commit aa21514

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/components/Header/Nav/ProductNavigation/Desktop/megaMenu.module.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@
124124
color: var(--gray-900);
125125
}
126126

127-
/* TODO: change with a var when avaialble in the chainlink repo */
127+
/* TODO: change with a var when available in the chainlink repo */
128128
.bottomLink a:hover {
129129
color: #0847f7;
130130
}

src/components/Header/Nav/ProductNavigation/Desktop/productNavigation.module.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
content: "";
3636
width: var(--space-4x);
3737
height: var(--space-4x);
38-
/* TODO: change with a var when avaialble in the chainlink repo */
38+
/* TODO: change with a var when available in the chainlink repo */
3939
background-color: #0847f7;
4040
top: -35px;
4141
left: 50%;

src/scripts/chainlink-automation/networks-config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ const getChainlinkAutomationConfigs = async () => {
7979
configs[key] = config
8080
} catch (error) {
8181
console.error(error)
82-
console.error(`Error while retriving chainlink automation config for ${key}`)
82+
console.error(`Error while retrieving chainlink automation config for ${key}`)
8383
}
8484
}
8585
}

src/scripts/helper/find-nonchecksummed-addresses.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const getCorrectAddress = (value: string) => {
1818
} catch (error) {
1919
if (error.reason && (error.reason as string).includes("bad address checksum")) {
2020
console.error(error.reason)
21-
console.error(`Search manually for ${error.value} and replace its occurences with a valid checksum`)
21+
console.error(`Search manually for ${error.value} and replace its occurrences with a valid checksum`)
2222
}
2323

2424
return undefined

0 commit comments

Comments
 (0)