diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4c0c70bb6..27f5aaedc 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Improved the error message in the activities import for `csv` files
+- Removed the application version from the client
- Allowed to edit today’s historical market data in the asset profile details dialog of the admin control panel
### Fixed
diff --git a/apps/client/src/app/app.component.html b/apps/client/src/app/app.component.html
index a52261969..e792598a7 100644
--- a/apps/client/src/app/app.component.html
+++ b/apps/client/src/app/app.component.html
@@ -165,7 +165,6 @@
© 2021 - {{ currentYear }}
Ghostfolio
- {{ version }}
diff --git a/apps/client/src/app/app.component.ts b/apps/client/src/app/app.component.ts
index d1d9529ce..2317279b1 100644
--- a/apps/client/src/app/app.component.ts
+++ b/apps/client/src/app/app.component.ts
@@ -17,7 +17,6 @@ import { DeviceDetectorService } from 'ngx-device-detector';
import { Subject } from 'rxjs';
import { filter, takeUntil } from 'rxjs/operators';
-import { environment } from '../environments/environment';
import { DataService } from './services/data.service';
import { TokenStorageService } from './services/token-storage.service';
import { UserService } from './services/user/user.service';
@@ -60,7 +59,6 @@ export class AppComponent implements OnDestroy, OnInit {
public routerLinkResources = ['/' + $localize`resources`];
public showFooter = false;
public user: User;
- public version = environment.version;
private unsubscribeSubject = new Subject