Nicolò

Results 20 comments of Nicolò

@gigaBITE397 There is no need to scrape each Linkedin employee profile. [Here ](https://gist.github.com/nicosh/b4ef0d2392f78a241d600806c5328952)is a really simple example on how you can scrape employees data from Company profile page.

Can confirm, i have the same issue with v7.0.0, while with v6.2.0 it works fine.

@steven-tey, its not clear to me if its possible (and how) to match nested routes. I have different first level domain that points to the multi-tenancy app, and need to...

@steven-tey this sound great! however, for my use case, i ended up using conditional statements ``` export default function middleware(req: NextRequest) { if ( !req.nextUrl.pathname.includes('.') && !req.nextUrl.pathname.includes('/api/revalidate') && !req.nextUrl.pathname.includes('/_next') )...

@Purvicapternal Instead clicking the button you can use `actions.setHidden`, i use this function : ``` const handleClone = (e)=>{ e.preventDefault() const parentNode = query.node(parent).get(); const indexToAdd = parentNode.data.nodes.indexOf(id) const tree...

Here is a working function for cloning elements ([sandbox](https://codesandbox.io/s/black-sun-3d0ej?file=/components/SettingsPanel.js)) : ``` const getCloneTree = useCallback((idToClone) => { const tree = query.node(idToClone).toNodeTree(); const newNodes = {}; const changeNodeId = (node, newParentId)...

@matdru sorry for going off topic but these breaking changes from v0.1.x to 0.2.x are documented somewhere? i see that 0.1.0-beta.11 is considered the stable version, which one is suggested...

I prefer to keep the `get` and `set` methods separate, something like this : ``` function useStore() { const store = useContext(StoreContext); if (!store) { throw new Error('Store not found');...

Reka looks very promising, i also agree with @akhrarovsaid about introducing a styling system for Reka, but i wonder if the more complex reka structure will impact somehow on the...

Are you flagging you components as client components? ("use client" directive at the top of the page)