From cab1ddb2decb313d83742746d2d3ff685c01064c Mon Sep 17 00:00:00 2001 From: olekstomek Date: Sat, 24 Jul 2021 18:35:04 +0200 Subject: standarized names for wifi alert min 8 characters (#94) --- src/components/Card.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/components') diff --git a/src/components/Card.js b/src/components/Card.js index 85bbb62..fc3e4da 100644 --- a/src/components/Card.js +++ b/src/components/Card.js @@ -32,7 +32,7 @@ export const Card = () => { const onPrint = () => { if (network.ssid.length > 0) { if (network.password.length < 8 && network.encryptionMode === 'WPA') { - alert(t('wifi.alert.password.8')); + alert(t('wifi.alert.password.length.8')); } else if ( network.password.length < 5 && network.encryptionMode === 'WEP' -- cgit v1.2.3