Skip to content

Commit

Permalink
update .tool-versions and lint
Browse files Browse the repository at this point in the history
  • Loading branch information
momentmaker committed Aug 29, 2023
1 parent 05ff98f commit 432dacd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
nodejs lts
nodejs 18.17.1
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,12 @@ const TOMLPanel = ({ loading, toml, error = '', title, expanded }: Props) => {
}

const AllowSimplePasswordsNotification = () => {
const allowSimplePasswordsNotification = "Starting in 2.6.0, chainlink nodes will no longer AllowSimplePasswords=true for production builds. Any TOML configuration that sets the following line will fail validation checks in `node start` or `node validate`."
const allowSimplePasswordsNotification =
'Starting in 2.6.0, chainlink nodes will no longer AllowSimplePasswords=true for production builds. Any TOML configuration that sets the following line will fail validation checks in `node start` or `node validate`.'
return (
<Card>
<CardHeader title={<>{allowSimplePasswordsNotification}</>} />
</Card>
</Card>
)
}

Expand All @@ -91,7 +92,7 @@ export const ConfigurationV2Card = () => {
<Grid item xs={12}>
<Card>
<CardHeader title="TOML Configuration" />
<AllowSimplePasswordsNotification />
<AllowSimplePasswordsNotification />
<TOMLPanel
title="V2 config dump:"
error={error?.message}
Expand All @@ -110,7 +111,7 @@ export const ConfigurationV2Card = () => {
<Grid item xs={12}>
<Card>
<CardHeader title="TOML Configuration" />
<AllowSimplePasswordsNotification />
<AllowSimplePasswordsNotification />
<TOMLPanel
title="User specified:"
error={error?.message}
Expand Down

0 comments on commit 432dacd

Please sign in to comment.