We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58e470a commit 2b7d1c1Copy full SHA for 2b7d1c1
packages/server/src/updater.ts
@@ -20,7 +20,7 @@ export const getRecentRelease = (): Promise<string> => {
20
});
21
22
res.on("end", () => {
23
- let release = JSON.parse(body);
+ const release = JSON.parse(body);
24
resolve(release.name);
25
26
0 commit comments