Sibelius Seraphini

Results 442 comments of Sibelius Seraphini

it is not dynamic, I think it makes sense to have a `hideNavigationBar` method on `this.props.navigator` instead of this

https://github.com/exponentjs/ex-navigation/issues/89#issuecomment-254920193 I think the best solution for your use case right now, is to have navigationBar: { visible: false } and render a navigationBar inside the render of your own...

I made another NavigationBar based on ex-navigation NavigationBar that only require Title, left and right button

check this https://github.com/relayjs/relay-examples/pull/270

I think usePagination and useRefetch can do the initial fetch on the server, and the refetch queries on the client

@kunal95 is this still happening?

what is the proper fix for this? is this error SyntaxError: Invalid character '\u20ac' related to BOM ?

where is the root cause of the bug? is it mongodb core? is it on mongoose? is it on mongo memory server? is it on jest ?

my pattern is similar to this one https://github.com/shelfio/jest-mongodb I think this happen when we have some kind of memory leak in tests, and this happens a lot on jest

I would avoid using replicaset on tests this is what we run on afterAll ``` afterAll(disconnectMongoose); ``` ``` export async function disconnectMongoose() { await mongoose.disconnect(); // dumb mongoose mongoose.connections.forEach((connection) =>...