summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--gui/src/renderer/components/HeaderBar.tsx8
1 files changed, 2 insertions, 6 deletions
diff --git a/gui/src/renderer/components/HeaderBar.tsx b/gui/src/renderer/components/HeaderBar.tsx
index 50a5aace31..76af1e5f63 100644
--- a/gui/src/renderer/components/HeaderBar.tsx
+++ b/gui/src/renderer/components/HeaderBar.tsx
@@ -1,3 +1,4 @@
+import { remote } from 'electron';
import * as React from 'react';
import { Button, Component, Styles, Text, Types, View } from 'reactxp';
import ImageView from './ImageView';
@@ -100,12 +101,7 @@ export class Brand extends Component {
return (
<View style={brandStyles.container}>
<ImageView width={50} height={50} source="logo-icon" />
- <Text style={brandStyles.title}>
- {
- // TODO: perhaps translate?
- 'MULLVAD VPN'
- }
- </Text>
+ <Text style={brandStyles.title}>{remote.app.getName().toUpperCase()}</Text>
</View>
);
}