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 71b6027 commit b3919cbCopy full SHA for b3919cb
src/pages/[platform]/build-a-backend/storage/copy-files/index.mdx
@@ -101,7 +101,7 @@ const copyFile = async () => {
101
}
102
});
103
} catch (error) {
104
- console.error('Error', err);
+ console.error('Error', error);
105
106
};
107
```
src/pages/[platform]/build-a-backend/storage/download-files/index.mdx
@@ -707,7 +707,7 @@ const { body, eTag } = await downloadData(
707
{
708
path: 'album/2024/1.jpg',
709
options: {
710
- onProgress: (progress) {
+ onProgress: (progress) => {
711
console.log(`Download progress: ${(progress.transferredBytes/progress.totalBytes) * 100}%`);
712
713
0 commit comments