Skip to content

Commit 9aa66bb

Browse files
committed
refactor: update getVersionLock implementation
1 parent d19082f commit 9aa66bb

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
@@ -234,7 +234,7 @@ export class AppState {
234234
private static versionLockNamePrefix = 'version:';
235235

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

240240
/**

0 commit comments

Comments
 (0)