diff --git a/README.md b/README.md index e5bff2e4b..14655a62f 100644 --- a/README.md +++ b/README.md @@ -274,6 +274,6 @@ If you like to support this project, get [**Ghostfolio Premium**](https://ghostf ## License -© 2023 [Ghostfolio](https://ghostfol.io) +© 2021 - 2023 [Ghostfolio](https://ghostfol.io) Licensed under the [AGPLv3 License](https://www.gnu.org/licenses/agpl-3.0.html). diff --git a/apps/client/src/app/app.component.html b/apps/client/src/app/app.component.html index a832b8499..66f9ce1ab 100644 --- a/apps/client/src/app/app.component.html +++ b/apps/client/src/app/app.component.html @@ -49,7 +49,7 @@ >
- © {{ currentYear }} Ghostfolio + © 2021 - {{ currentYear }} Ghostfolio {{ version }}
diff --git a/apps/client/src/app/pages/register/register-page.component.ts b/apps/client/src/app/pages/register/register-page.component.ts index 2c2a7cc84..ad8fc1df4 100644 --- a/apps/client/src/app/pages/register/register-page.component.ts +++ b/apps/client/src/app/pages/register/register-page.component.ts @@ -8,7 +8,6 @@ import { UserService } from '@ghostfolio/client/services/user/user.service'; import { InfoItem, LineChartItem } from '@ghostfolio/common/interfaces'; import { hasPermission, permissions } from '@ghostfolio/common/permissions'; import { Role } from '@prisma/client'; -import { format } from 'date-fns'; import { DeviceDetectorService } from 'ngx-device-detector'; import { Subject } from 'rxjs'; import { takeUntil } from 'rxjs/operators'; @@ -22,7 +21,6 @@ import { ShowAccessTokenDialog } from './show-access-token-dialog/show-access-to templateUrl: './register-page.html' }) export class RegisterPageComponent implements OnDestroy, OnInit { - public currentYear = format(new Date(), 'yyyy'); public demoAuthToken: string; public deviceType: string; public hasPermissionForSocialLogin: boolean;