1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 09:13:33 +00:00

[EC-598] chore: clean up console logs

This commit is contained in:
Andreas Coroiu
2023-01-09 14:33:10 +01:00
parent 6392ad82d1
commit 7bd7cbfd9a
3 changed files with 0 additions and 15 deletions

View File

@@ -1,9 +1,6 @@
import { MessageType } from "./messaging/message";
import { Messenger } from "./messaging/messenger";
// eslint-disable-next-line no-console
console.log("content-script loaded");
const s = document.createElement("script");
s.src = chrome.runtime.getURL("content/webauthn/page-script.js");
(document.head || document.documentElement).appendChild(s);

View File

@@ -3,9 +3,6 @@ import { WebauthnUtils } from "../../browser/webauthn-utils";
import { MessageType } from "./messaging/message";
import { Messenger } from "./messaging/messenger";
// eslint-disable-next-line no-console
console.log("page-script loaded");
const browserCredentials = {
create: navigator.credentials.create.bind(navigator.credentials),
get: navigator.credentials.get.bind(navigator.credentials),