Skip to content

Commit 0e32f63

Browse files
committed
refactor: update getVersionLock implementation
1 parent 1267255 commit 0e32f63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/renderer/state.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ export class AppState {
235235
private static versionLockNamePrefix = 'version:';
236236

237237
public getVersionLockName(ver: string) {
238-
return [AppState.versionLockNamePrefix, ver].join('');
238+
return `${AppState.versionLockNamePrefix}${ver}`;
239239
}
240240

241241
/**

0 commit comments

Comments
 (0)