diff --git a/src/pages/Login/TwoFactor.vue b/src/pages/Login/TwoFactor.vue index e3f0c2bf8..f14e85418 100644 --- a/src/pages/Login/TwoFactor.vue +++ b/src/pages/Login/TwoFactor.vue @@ -40,7 +40,10 @@ async function onSubmit() { router.push({ name: 'Dashboard' }); } } catch (e) { - // console.log(e); + quasar.notify({ + message: e.response?.data?.error.message, + type: 'negative', + }); } }