();
diff --git a/apps/desktop/src/vault/app/vault/vault-v2.component.html b/apps/desktop/src/vault/app/vault/vault-v2.component.html
index 4a66abaf90..ef9fdbc2f8 100644
--- a/apps/desktop/src/vault/app/vault/vault-v2.component.html
+++ b/apps/desktop/src/vault/app/vault/vault-v2.component.html
@@ -19,7 +19,6 @@
(onClone)="cloneCipher($event)"
(onDelete)="deleteCipher()"
(onCancel)="cancelCipher($event)"
- [isSubmitting]="isSubmitting"
[masterPasswordAlreadyPrompted]="cipherRepromptId === cipherId"
>
@@ -33,7 +32,6 @@
formId="cipherForm"
[config]="config"
(cipherSaved)="savedCipher($event)"
- [beforeSubmit]="onSubmit"
[submitBtn]="footer?.submitBtn"
(formStatusChange$)="formStatusChanged($event)"
>
diff --git a/apps/desktop/src/vault/app/vault/vault-v2.component.ts b/apps/desktop/src/vault/app/vault/vault-v2.component.ts
index 256276cad8..13a8fa91bc 100644
--- a/apps/desktop/src/vault/app/vault/vault-v2.component.ts
+++ b/apps/desktop/src/vault/app/vault/vault-v2.component.ts
@@ -161,7 +161,6 @@ export class VaultV2Component
cipher: CipherView | null = new CipherView();
collections: CollectionView[] | null = null;
config: CipherFormConfig | null = null;
- isSubmitting = false;
/** Tracks the disabled status of the edit cipher form */
protected formDisabled: boolean = false;
@@ -741,7 +740,6 @@ export class VaultV2Component
await this.vaultItemsComponent?.load(this.activeFilter.buildFilter()).catch(() => {});
await this.go().catch(() => {});
await this.vaultItemsComponent?.refresh().catch(() => {});
- this.isSubmitting = false;
}
async deleteCipher() {
@@ -917,11 +915,6 @@ export class VaultV2Component
});
}
- protected onSubmit = async () => {
- this.isSubmitting = true;
- return Promise.resolve(true);
- };
-
private prefillCipherFromFilter() {
if (this.activeFilter.selectedCollectionId != null && this.vaultFilterComponent != null) {
const collections = this.vaultFilterComponent.collections?.fullList.filter(