summaryrefslogtreecommitdiffhomepage
path: root/gui/src/renderer
diff options
context:
space:
mode:
Diffstat (limited to 'gui/src/renderer')
-rw-r--r--gui/src/renderer/app.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/gui/src/renderer/app.tsx b/gui/src/renderer/app.tsx
index 49c4129112..277227eac7 100644
--- a/gui/src/renderer/app.tsx
+++ b/gui/src/renderer/app.tsx
@@ -361,7 +361,7 @@ export default class AppRenderer {
return IpcRendererEventChannel.accountHistory.clear();
}
- public async openLinkWithAuth(link: string): Promise<void> {
+ public openLinkWithAuth = async (link: string): Promise<void> => {
let token = '';
try {
token = await IpcRendererEventChannel.account.getWwwAuthToken();
@@ -369,7 +369,7 @@ export default class AppRenderer {
log.error(`Failed to get the WWW auth token: ${e.message}`);
}
void this.openUrl(`${link}?token=${token}`);
- }
+ };
public async setAllowLan(allowLan: boolean) {
const actions = this.reduxActions;