diff --git a/.changeset/shy-moose-walk.md b/.changeset/shy-moose-walk.md
new file mode 100644
index 00000000..3bd9f435
--- /dev/null
+++ b/.changeset/shy-moose-walk.md
@@ -0,0 +1,5 @@
+---
+'@smartcontractkit/operator-ui': patch
+---
+
+Removing notification for AllowSimplePasswords breaking change
diff --git a/src/screens/Configuration/ConfigurationV2Card/ConfigurationV2Card.tsx b/src/screens/Configuration/ConfigurationV2Card/ConfigurationV2Card.tsx
index 652929b1..7b52c734 100644
--- a/src/screens/Configuration/ConfigurationV2Card/ConfigurationV2Card.tsx
+++ b/src/screens/Configuration/ConfigurationV2Card/ConfigurationV2Card.tsx
@@ -68,16 +68,6 @@ 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`.'
- return (
-
- {allowSimplePasswordsNotification}>} />
-
- )
-}
-
export const ConfigurationV2Card = () => {
const { data, loading, error } = useQuery<
FetchConfigV2,
@@ -92,7 +82,6 @@ export const ConfigurationV2Card = () => {
-
{
-