Thomas Hagström
Thomas Hagström
# Example ```typescript const unsubFirestore = FirebaseProvider.firestore() .collection(FirestoreCollections.ProfilesCollectionName) .doc(user?.uid) .onSnapshot({ next: (snap) => DocumentSnapshotToHookWithItem( snap, onSnapshot, ), error: (error) => { setProfileItem({...profileItem, error}); }, }); ``` # Expected behavior Mocked...
When verifying using either `RSA` or `RSAKeychain` on iOS any totally bogus message will pass as `true`. Completely unreliable.  ```javascript export const VerifyKeyChain = async (messageSignature, message) => {...
When providing a new `value` dynamically it doesn't change in the stepper. This is because an anti-pattern is used where you both take the value as prop and keep it...
Add TypeScript d.ts or simply use TypeScript to begin with. ```typescript declare module 'formatcoords' { interface FormatOptions { latLonSeparator?: string; decimalPlaces?: number; } /** * Formats decimal lat/lon coordinates into...