Thomas Hagström

Results 4 issues of 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. ![image](https://user-images.githubusercontent.com/396545/101615687-b4128d80-3a0e-11eb-8dc2-f27875b0e482.png) ```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...