Paul Hayes

Results 4 issues of Paul Hayes

```js export const todosMirageRoutes = (server: Server): void => { server.get('/todos', (schema) => { return schema.todos.all() }) server.get('/todos/:id', (schema, request) => { return schema.db.todos.find(request.params.id) }) server.delete('/todos/:id', (schema, request) => {...

In the latest version of Nextjs if you follow your app wide integration tutorial, it breaks. The page one works.

**Describe the bug** A clear and concise description of what the bug is. In this file: src/ol/layer/Layer.js It can be that layerState is undefined in the inView function. This causes...

bug