1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-13 23:03:32 +00:00

Resolved circular dependency with UpdateLicenseDialogResult enum (#10056)

This commit is contained in:
Conner Turnbull
2024-07-10 13:34:51 -04:00
committed by GitHub
parent c7d64cfc25
commit e4c7efba12
4 changed files with 8 additions and 9 deletions

View File

@@ -8,12 +8,9 @@ import { I18nService } from "@bitwarden/common/platform/abstractions/i18n.servic
import { PlatformUtilsService } from "@bitwarden/common/platform/abstractions/platform-utils.service";
import { DialogService } from "@bitwarden/components";
import { UpdateLicenseDialogResult } from "./update-license-types";
import { UpdateLicenseComponent } from "./update-license.component";
export enum UpdateLicenseDialogResult {
Updated = "updated",
Cancelled = "cancelled",
}
@Component({
templateUrl: "update-license-dialog.component.html",
})