diff options
| author | olekstomek <olekstomek@gmail.com> | 2021-07-24 18:35:04 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-24 09:35:04 -0700 |
| commit | cab1ddb2decb313d83742746d2d3ff685c01064c (patch) | |
| tree | f9c91aa9eb7db0eef5d8c48c504cc28cb7b1e159 /src/components | |
| parent | f38a27abd20e8879174f602b872ee883ac1ff735 (diff) | |
standarized names for wifi alert min 8 characters (#94)
Diffstat (limited to 'src/components')
| -rw-r--r-- | src/components/Card.js | 2 |
1 files changed, 1 insertions, 1 deletions
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 = () => { | |||
| 32 | const onPrint = () => { | 32 | const onPrint = () => { |
| 33 | if (network.ssid.length > 0) { | 33 | if (network.ssid.length > 0) { |
| 34 | if (network.password.length < 8 && network.encryptionMode === 'WPA') { | 34 | if (network.password.length < 8 && network.encryptionMode === 'WPA') { |
| 35 | alert(t('wifi.alert.password.8')); | 35 | alert(t('wifi.alert.password.length.8')); |
| 36 | } else if ( | 36 | } else if ( |
| 37 | network.password.length < 5 && | 37 | network.password.length < 5 && |
| 38 | network.encryptionMode === 'WEP' | 38 | network.encryptionMode === 'WEP' |
