Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions apps/browser/src/platform/flags.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ import {

import { GroupPolicyEnvironment } from "../admin-console/types/group-policy-environment";

import { BrowserApi } from "./browser/browser-api";

// required to avoid linting errors when there are no flags
export type Flags = {
accountSwitching?: boolean;
Expand Down Expand Up @@ -37,8 +35,5 @@ export function devFlagValue(flag: keyof DevFlags) {
* Not by expanding these flag getters.
*/
export function enableAccountSwitching(): boolean {
if (BrowserApi.isSafariApi) {
return false;
}
return flagEnabled("accountSwitching");
}
Loading