Skip to content

Commit 82c004a

Browse files
committed
refactor: update getVersionLock implementation
1 parent 3634eab commit 82c004a

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
@@ -216,7 +216,7 @@ export class AppState {
216216
private static versionLockNamePrefix = 'version:';
217217

218218
public getVersionLockName(ver: string) {
219-
return [AppState.versionLockNamePrefix, ver].join('');
219+
return `${AppState.versionLockNamePrefix}${ver}`;
220220
}
221221

222222
/**

0 commit comments

Comments
 (0)