Frederick Widjaja
Frederick Widjaja
I'm using the ESLint plugin in VSCode, and when I'm in the middle of typing out my component style (e.g. ``) in VSCode, I'm getting the following error: ``` TypeError:...
## Description This PR makes the moment package an optional dependency so as to decrease bundle size for those that do not use moment to format date/time. Potentially breaking change:...
Similar to https://github.com/oblador/react-native-keychain/pull/547, I've run into issues with main thread deadlocking when using this library to show a BiometricPrompt and have seen an increased rate of ANRs on Crashlytics. Upon...
### Describe the bug With the following entity with an Embedded property: ``` @Embeddable() class Properties { @Property() tag: string; constructor(tag: string) { this.tag = tag; } } @Entity() class...
### Describe the bug With the following entities: ``` @Entity() class Organization { @PrimaryKey() id!: number; @Property() name: string; @Property({ lazy: true }) tag: string; constructor(name: string, tag: string) {...