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

[PM-3677] Remove ipcRenderer from desktop utils (#6477)

* [PM-3677] Remove ipcRenderer from utils

* Fix typo
This commit is contained in:
Daniel García
2023-11-09 12:48:18 +01:00
committed by GitHub
parent 929a08339f
commit 7f7700f5f5
5 changed files with 17 additions and 10 deletions

View File

@@ -1,4 +1,5 @@
// import { contextBridge } from "electron";
import auth from "./auth/preload";
import platform from "./platform/preload";
/**
@@ -13,6 +14,7 @@ import platform from "./platform/preload";
// Each team owns a subspace of the `ipc` global variable in the renderer.
export const ipc = {
auth,
platform,
};