-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
WIP Feat/sync lib #4256
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
WIP Feat/sync lib #4256
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copilot reviewed 278 out of 284 changed files in this pull request and generated 2 comments.
Files not reviewed (6)
- android/.idea/gradle.xml: Language not supported
- android/app/capacitor.build.gradle: Language not supported
- android/capacitor.settings.gradle: Language not supported
- electron/tsconfig.electron.json: Language not supported
- package.json: Language not supported
- src/app/core-ui/main-header/main-header.component.scss: Language not supported
} catch (e) { | ||
log('ERR: Sync error while loading file from ' + filePath); | ||
error(e); | ||
return new Error(e as string); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Casting the caught error to a string using 'e as string' may not reliably convert non-string errors. Consider using e.toString() to produce a consistent error message.
return new Error(e as string); | |
return new Error(e.toString()); |
Copilot is powered by AI, so mistakes are possible. Review output carefully before use.
No description provided.