Skip to content

Commit

Permalink
remove elctron import
Browse files Browse the repository at this point in the history
  • Loading branch information
rjmangubat23 committed Aug 31, 2022
1 parent 1be28de commit ed54913
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ import type { SmartScannerPlugin } from "./definitions";
const SmartScannerPlugin = registerPlugin<SmartScannerPlugin>(
'SmartScanner',
{
web: () => import("./web").then((m) => new m.SmartScannerPluginWeb()),
electron: () => import('./web').then(m => new m.SmartScannerPluginWeb())
web: () => import("./web").then((m) => new m.SmartScannerPluginWeb())
}
);

Expand Down

0 comments on commit ed54913

Please sign in to comment.