Skip to content

Commit

Permalink
fix: default app name
Browse files Browse the repository at this point in the history
Fix the default application name to correspond to the repository name.
  • Loading branch information
AlexanderLukin committed Oct 4, 2023
1 parent ec5498e commit bcea081
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/app.constants.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export const APP_VERSION = process.env.npm_package_version ?? 'unversioned';
export const APP_NAME = process.env.npm_package_name ?? 'unnamed';
export const APP_NAME = process.env.npm_package_name ?? 'lido-keys-api';
export const APP_DESCRIPTION = process.env.npm_package_description ?? 'lido-keys-api';

0 comments on commit bcea081

Please sign in to comment.