1
0
mirror of https://github.com/bitwarden/browser synced 2026-03-01 11:01:17 +00:00

PM-19255: Initial add (refactor) for add credentials

This commit is contained in:
Colton Hurst
2025-04-25 19:11:08 -04:00
parent 24786a08df
commit e98f56f565
7 changed files with 217 additions and 6 deletions

View File

@@ -3,6 +3,8 @@ import * as path from "path";
import { app } from "electron";
import { passkey_authenticator } from "@bitwarden/desktop-napi";
if (
process.platform === "darwin" &&
process.argv.some((arg) => arg.indexOf("chrome-extension://") !== -1 || arg.indexOf("{") !== -1)
@@ -40,6 +42,8 @@ if (
// eslint-disable-next-line
const Main = require("./main").Main;
passkey_authenticator.register();
const main = new Main();
main.bootstrap();
}