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 810243e commit 948136eCopy full SHA for 948136e
src/components/data/SoftwareDownload.svelte
@@ -60,9 +60,9 @@
60
(ver, oldVer) => {
61
// Only handle changes, not initial page load where builds are prerendered on server.
62
if (oldVer !== undefined && ver !== oldVer) {
63
- buildsPromise = buildsPromise.then(() => {
+ buildsPromise = buildsPromise.then(async () => {
64
buildsLoading = true;
65
- fetchBuildsOrError({ value: project }, !isStable).then((result) => {
+ await fetchBuildsOrError({ value: project }, !isStable).then((result) => {
66
builds = result;
67
buildsLoading = false;
68
});
0 commit comments