aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAlan Hogan <git-commits@alanhogan.com>2021-07-11 20:13:31 -0700
committerGitHub <noreply@github.com>2021-07-11 20:13:31 -0700
commit4565540fa87d1726246044a9966e4b0aac6460fb (patch)
treeebfbd14fde1b486382d2a875551b42b389f730c3 /src
parent1924298335692eebc79266fe1000895a136defd9 (diff)
Fix typo (#38)
atleast → at least
Diffstat (limited to 'src')
-rw-r--r--src/components/Card.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Card.js b/src/components/Card.js
index 7d24f88..05fd09e 100644
--- a/src/components/Card.js
+++ b/src/components/Card.js
@@ -28,7 +28,7 @@ export const Card = () => {
28 28
29 const onPrint = () => { 29 const onPrint = () => {
30 if (network.password.length < 8) { 30 if (network.password.length < 8) {
31 alert('Password must be atleast 8 characters'); 31 alert('Password must be at least 8 characters');
32 } else { 32 } else {
33 window.print(); 33 window.print();
34 } 34 }