Skip to content

Commit 35aa8fc

Browse files
committed
fix(root): remove v prefix from version string
1 parent db89dd6 commit 35aa8fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core-api/src/modules/root/root.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ export class RootService {
109109

110110
const currentVersion = isDeveloperMode
111111
? latestVersion
112-
: this.configService.get<string>('APP_VERSION') || null;
112+
: this.configService.get<string>('APP_VERSION')?.replace('v', '') || null;
113113

114114
return {
115115
currentVersion,

0 commit comments

Comments
 (0)