Skip to content
This repository has been archived by the owner on Jun 4, 2023. It is now read-only.

Commit

Permalink
feat: bring back autofill to life (#447)
Browse files Browse the repository at this point in the history
  • Loading branch information
sentialx authored Apr 26, 2020
1 parent b2f0169 commit fe8f54d
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/main/services/messaging.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,7 @@ export const runMessagingService = (appWindow: AppWindow) => {
ipcMain.on(`is-incognito-${id}`, (e) => {
e.returnValue = appWindow.incognito;
});
/*
TODO:

ipcMain.on(`form-fill-show-${id}`, async (e, rect, name, value) => {
const items = await getFormFillMenuItems(name, value);

Expand Down Expand Up @@ -242,5 +241,5 @@ export const runMessagingService = (appWindow: AppWindow) => {
const password = await getPassword('wexond', account);
e.sender.send(id, password);
},
);*/
);
};

0 comments on commit fe8f54d

Please sign in to comment.