You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 18, 2023. It is now read-only.
For example, within lib/api/files.ts, getSignedUploadURLs and getUserFiles are async methods that make network calls such as fetch and getDocs. These operations could fail and these errors (example HTTP errors) would need to be handled properly.
Similarly, where methods from lib/api/files.ts are used, such as within components/datasets/DatasetViewer.tsx (loading the user's datasets) would depend on this error handling being done correctly.
For example, within
lib/api/files.ts,getSignedUploadURLsandgetUserFilesare async methods that make network calls such asfetchandgetDocs. These operations could fail and these errors (example HTTP errors) would need to be handled properly.Similarly, where methods from
lib/api/files.tsare used, such as withincomponents/datasets/DatasetViewer.tsx(loading the user's datasets) would depend on this error handling being done correctly.