What would be the optimal way to integrate stytch auth magic links?
rapid refetching
How do you make authenticated requests using data providers on the server side in next.js?
Logged in but I'm not Logged in!

lazy loading and useList
useLocation error
useLocation() may be used only in the context of a <Router> component
I followed the migration guide published here: https://refine.dev/docs/routing/integrations/react-router/migration-guide-v6-to-v7/#package-changes
My App.tsx setup looks like this:...How to enable sorting on refinedev/react-table columns with shadcn?
How to enable search on refinedev/react-table with shadcn?
How to do a table data search with @refinedev/react-table with a custom key outside the columns def?
Is Refine compatible with Tanstack start?
useForm() dirty state is staying across different resource id
How to create notification provider from scratch?
React Router v7 in Framework mode
Got an error when running dev with PNPM
unit test issue
useGo
hook with the "show" action, we're encountering the following error:
APage › should search automatically when there are filters on initial load...Free credits seem to have got me nothing as AI isn't working at the moment
multiple dataprovider usage
TQ cache isn't working in existing project
Lazy loading a nested Ant Design table
useTable
in the function passed into onExpand
, I get an error saying that React hooks always need to be called in the same order. I've also tried to use a simple API request to the endpoint I need but I'm missing auth headers since the request isn't being made by my data provider.
Here's some context about my architecture: I have a resource called "PublishResults" with two foreign key attributes, "draft_event_id" , a FK to the "DraftEvents" table and "latest_request_id", which is a FK to the RequestHistory table. Also, the only connection between the RequestHistory and the DraftEvent table is that there's a key within RequestHistory's jsonb notes column called "draft_event_id". In addition, there may be multiple RequestHistory records per one DraftEvent.
Here's what I want to do: I'm displaying a table of PublishResults in refine using the useTable hook and I want to show all of the RequestHistory records in the nested table that relate to the "draft_event_id" of the PublishResult record. I only want to request the data necessary for the nested table if the user expands the row. How do I do this?...