diff --git a/packages/hoppscotch-app/components/button/Primary.vue b/packages/hoppscotch-app/components/button/Primary.vue index 1e094c7c1..9a87d181b 100644 --- a/packages/hoppscotch-app/components/button/Primary.vue +++ b/packages/hoppscotch-app/components/button/Primary.vue @@ -34,6 +34,7 @@ ]" :disabled="disabled" :tabindex="loading ? '-1' : '0'" + :type="type" > [], }, + type: { + type: String, + default: "button", + }, }, }) diff --git a/packages/hoppscotch-app/components/firebase/Login.vue b/packages/hoppscotch-app/components/firebase/Login.vue index 04ce5020f..2d72853ac 100644 --- a/packages/hoppscotch-app/components/firebase/Login.vue +++ b/packages/hoppscotch-app/components/firebase/Login.vue @@ -26,7 +26,11 @@ @click.native="mode = 'email'" /> -
+
-
+
@@ -150,8 +145,6 @@ export default defineComponent({ signingInWithGoogle: false, signingInWithGitHub: false, signingInWithEmail: false, - emailRegex: - /^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\.[a-zA-Z0-9-]+)*$/, mode: "sign-in", } },