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 b73e849 commit 90efa9dCopy full SHA for 90efa9d
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