Skip to content

Commit 84edf33

Browse files
committed
Fix cicd tests
1 parent 7f250fe commit 84edf33

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/lib/stores/uploader.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,8 @@ const createUploader = () => {
103103
newFile.progress = p.progress;
104104
newFile.status = p.progress === 100 ? 'success' : 'pending';
105105
updateFile(p.$id, newFile);
106+
107+
return {};
106108
}
107109
);
108110
newFile.$id = uploadedFile.$id;
@@ -133,6 +135,8 @@ const createUploader = () => {
133135
newDeployment.progress = p.progress;
134136
newDeployment.status = p.progress === 100 ? 'success' : 'pending';
135137
updateFile(p.$id, newDeployment);
138+
139+
return {};
136140
});
137141
newDeployment.$id = uploadedFile.$id;
138142
newDeployment.progress = 100;

0 commit comments

Comments
 (0)