1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-31 00:33:33 +00:00

SendsV2 -> SendV2

This commit is contained in:
Isaac Ivins
2025-11-25 16:17:59 -05:00
parent 8016b3bfce
commit 9db2e0ccf5
3 changed files with 9 additions and 9 deletions

View File

@@ -52,7 +52,7 @@ import { VaultComponent } from "../vault/app/vault-v3/vault.component";
import { Fido2PlaceholderComponent } from "./components/fido2placeholder.component";
import { DesktopLayoutComponent } from "./layout/desktop-layout.component";
import { SendComponent } from "./tools/send/send.component";
import { SendsV2Component } from "./tools/send-v2/send-v2.component";
import { SendV2Component } from "./tools/send-v2/send-v2.component";
/**
* Data properties acceptable for use in route objects in the desktop
@@ -344,7 +344,7 @@ const routes: Routes = [
},
{
path: "new-sends",
component: SendsV2Component,
component: SendV2Component,
},
],
},

View File

@@ -1,17 +1,17 @@
import { ComponentFixture, TestBed } from "@angular/core/testing";
import { SendsV2Component } from "./send-V2.component";
import { SendV2Component } from "./send-V2.component";
describe("SendsV2Component", () => {
let component: SendsV2Component;
let fixture: ComponentFixture<SendsV2Component>;
describe("SendV2Component", () => {
let component: SendV2Component;
let fixture: ComponentFixture<SendV2Component>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [SendsV2Component],
imports: [SendV2Component],
}).compileComponents();
fixture = TestBed.createComponent(SendsV2Component);
fixture = TestBed.createComponent(SendV2Component);
component = fixture.componentInstance;
fixture.detectChanges();
});

View File

@@ -6,4 +6,4 @@ import { Component, ChangeDetectionStrategy } from "@angular/core";
template: "<p>Sends V2 Component</p>",
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class SendsV2Component {}
export class SendV2Component {}