summaryrefslogtreecommitdiffhomepage
path: root/gui/src
diff options
context:
space:
mode:
Diffstat (limited to 'gui/src')
-rw-r--r--gui/src/renderer/app.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/gui/src/renderer/app.tsx b/gui/src/renderer/app.tsx
index b3c044a44f..b7c4971c23 100644
--- a/gui/src/renderer/app.tsx
+++ b/gui/src/renderer/app.tsx
@@ -550,7 +550,7 @@ export default class AppRenderer {
this.reduxActions.connection.newLocation(location);
}
- private covertRelayListToLocationList(relayList: IRelayList): IRelayLocationRedux[] {
+ private convertRelayListToLocationList(relayList: IRelayList): IRelayLocationRedux[] {
return relayList.countries
.map((country) => ({
name: country.name,
@@ -573,13 +573,13 @@ export default class AppRenderer {
}
private setRelays(relayList: IRelayList) {
- const locations = this.covertRelayListToLocationList(relayList);
+ const locations = this.convertRelayListToLocationList(relayList);
this.reduxActions.settings.updateRelayLocations(locations);
}
private setBridges(relayList: IRelayList) {
- const locations = this.covertRelayListToLocationList(relayList);
+ const locations = this.convertRelayListToLocationList(relayList);
this.reduxActions.settings.updateBridgeLocations(locations);
}