mirror of
https://github.com/bitwarden/browser
synced 2025-12-30 15:13:32 +00:00
* Removed captcha references. * Removed connectors from webpack * Fixed extra parameter. * Resolve merge conflicts. * Fixed extra argument. * Fixed failing tests. * Fixed failing test. * Accessibility cookie cleanup * Cleaned up accessibility component. * Deleted old registration endpoint * Remove unused register request object. * Fixed merge error that changed font family. * Fixed formatting from merge. * Linting
11 lines
257 B
TypeScript
11 lines
257 B
TypeScript
import { ipcRenderer } from "electron";
|
|
|
|
export default {
|
|
loginRequest: (alertTitle: string, alertBody: string, buttonText: string): Promise<void> =>
|
|
ipcRenderer.invoke("loginRequest", {
|
|
alertTitle,
|
|
alertBody,
|
|
buttonText,
|
|
}),
|
|
};
|