1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 00:33:44 +00:00

PS-1230 PS-1152 Fix/improve null origin message (#3280)

* Improve message if Origin header value is empty

* PS-1230 Remove serve feature flag
This commit is contained in:
Matt Gibson
2022-08-11 08:00:27 -06:00
committed by GitHub
parent 4a1c3eb1ec
commit 6e68761337
5 changed files with 41 additions and 40 deletions

View File

@@ -1,5 +1,5 @@
export type Flags = {
serve?: boolean;
};
// Remove this linter hint if any flags exist
// eslint-disable-next-line @typescript-eslint/ban-types
export type Flags = {};
export type FlagName = keyof Flags;