1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-26 22:41:17 +02:00

Desktop: Resolves #164: Add support for proxy (#6537)

This commit is contained in:
Jason Williams
2022-07-10 14:54:31 +01:00
committed by GitHub
parent 2c4cf9fbdb
commit 8bb5b4a557
7 changed files with 108 additions and 6 deletions

View File

@@ -16,7 +16,7 @@ let isTestingEnv_ = false;
// (app-desktop, app-mobile, etc.) since we are sure they won't be dependency to
// other packages (unlike the lib which can be included anywhere).
//
// Regarding the type - althought we import React, we only use it as a type
// Regarding the type - although we import React, we only use it as a type
// using `typeof React`. This is just to get types in hooks.
//
// https://stackoverflow.com/a/42816077/561309