1
0
mirror of https://github.com/bitwarden/browser.git synced 2025-02-16 01:21:48 +01:00

fix bad imports (#12803)

This commit is contained in:
Jonathan Prusik 2025-01-10 12:11:21 -05:00 committed by GitHub
parent f6a0496656
commit 9e33e6960b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 6 deletions

View File

@ -1,8 +1,7 @@
// FIXME: Update this file to be type safe and remove this and next line
// @ts-strict-ignore
// FIXME: remove `src` and fix import
// eslint-disable-next-line no-restricted-imports
import { ServerConfig } from "../../../../../libs/common/src/platform/abstractions/config/server-config";
import { ServerConfig } from "@bitwarden/common/platform/abstractions/config/server-config";
import {
AddLoginMessageData,
ChangePasswordMessageData,

View File

@ -1,7 +1,5 @@
import { VaultTimeoutAction } from "@bitwarden/common/enums/vault-timeout-action.enum";
import { Region } from "@bitwarden/common/platform/abstractions/environment.service";
// FIXME: remove `src` and fix import
// eslint-disable-next-line no-restricted-imports
import { VaultTimeoutAction } from "@bitwarden/common/src/enums/vault-timeout-action.enum";
import { VaultTimeout } from "@bitwarden/common/types/vault-timeout.type";
import { CipherType } from "@bitwarden/common/vault/enums";