diff --git a/package.json b/package.json index 8bd9fe5..a66927e 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "a8000-plus", "private": true, - "version": "0.0.2", + "version": "0.0.3", "type": "module", "scripts": { "dev": "vite", diff --git a/src/pages/Login/index.vue b/src/pages/Login/index.vue index 27af65f..ace2b6f 100644 --- a/src/pages/Login/index.vue +++ b/src/pages/Login/index.vue @@ -90,7 +90,10 @@ const submitPin = async () => { const showPassword = ref(false) const next = () => { - showPassword.value = true + if (activeUser.value?.id) { + showPassword.value = true + } + } const back = () => { showPassword.value = false