mirror of
https://github.com/inaturalist/iNaturalistReactNative.git
synced 2026-04-19 06:23:12 -04:00
* Updated faker; fixed bug w/ DisplayTaxonName trying to modify a Realm object * Fixed crash going from ObsDetail to ObsEdit * Fixed bug fetching observation dates (not clear how this didn't instantly crash_ * Bugfix: MyObs observation fetch was failing on taxa w/ float rank_level
9 lines
213 B
JavaScript
9 lines
213 B
JavaScript
import { define } from "factoria";
|
|
|
|
export default define( "LocalPhoto", faker => ( {
|
|
id: faker.number.int( ),
|
|
attribution: faker.lorem.sentence( ),
|
|
licenseCode: "cc-by-nc",
|
|
url: faker.image.url( )
|
|
} ) );
|