Results 10 issues of Frazer

https://github.com/tomekwojcik/ForgeryPy/issues/3

I have been using forgerypy as instructed in Flask Web Development book. However, when I use `paragraphs`, I get the following traceback. ``` Traceback (most recent call last): File "/home/crow/code/flask_ve/bin/burddy",...

I am trying to implement some simple infinite scroll. However the newer version seems to be missing something the older version had. ``` infiniteScroll() { const interval = 5; let...

enhancement
Project:Components
pr-welcome

The docs mention how to make a filter component, so why not just include it? Did this on my own project. Figured it could be useful for lots of people...

I noticed that you had `app.use(app.router)`. However, this will give traceback when logging errors: ``` Error: 'app.router' is deprecated! ``` I think you can use `express.Router();` instead

Using simple schema, it would be far more convenient to create slugs manually. That is, something like as follows: ``` const newSlug = FriendlySlugs.generate({ collection: Collection }); ```

enhancement

I want to have a route like this: ``` Endpoints.addRoute('report', { async get() { try { return await Orders.aggregateAsync(/**...*/); } catch (err) { return { status: 'fail' } } }...

I've been finding it hard to change the position of the preview box. It would be nice if there was a preview field or something similar. Something like: ``` class...

enhancement

### Describe the bug I have a next app, and I ran the command `npx storybook@latest init`. Everything looks fine, and it ran when I did `npm run storybook` However,...

question / support
nextjs
tailwind
addon: styling

I've had to write this on almost every project I've been a part of. Essentially, the idea is that you want to create a function which will insert into a...