auth0 access user metadata
iam using auth0 in refine dev i want to access the credentials and user metadata in in my app.tsx file
Sub resource in antd tabs
I'm trying to get a component as a "SubResource" of some sort. I implemented a resource for "projects" with a show page, and on that page I put antd tabs.
On the first tab there is the show component for products. On the second tab, I'd like a list component for that subresource (project admins) and the url to reflect something along the lines of "projects/:id/projects-admin"....
Missing "./dist/inferencers" specifier in "@refinedev/inferencer" package
I get the following error when running my dev server:
Missing "./dist/inferencers" specifier in "@refinedev/inferencer" package
I have ensured that I ran npm i @refinedev/inferencer again.
I have ensured that "./dist/inferencers" exists and "./dist/inferencers/mui" as well.
I have lastly also ensured that the following is set in both our tsconfig and vite config: "moduleResolution": "node",...Remix docs out of date?
I'm just starting to experiment with refine in Remix and coming across issues when using some of the examples in particular SSR
https://refine.dev/docs/routing/integrations/remix/#how-to-make-ssr-work
If I understand correctly it seems things have changed since this was written, for example:
...
have use simple list to make an api call , want to call that api again after a function execution
have use simple list to make an api call , want to call that api again after a function execution how to achieve it
CRM-App implementation
I am having difficulties implementation the CRM-APP Example. It's working fine with the default refine api that was in the example, but now i've setup a database and want to re-direct the app too look into the values in that database.
I've setup an Apollo server with GraphQL and i can make requests and return values, but it does not seems to go over to my website, i keep getting network errors, and i don't know how to debug this....
why not useTable search after data update?
```
export default function PointList() {
const { tableQueryResult, pageCount, pageSize, current, setCurrent } = useTable({
resource: "points",
pagination: {...
i dont want type script in my refine dev project
i want to use .js not type script in my refine dev project
how to fix ngrok CORS error?
I paid for ngrok and was issued a fixed domain. CORS occurs when calling from my local ngrok domain API.
``
const customergroupsResponse = await fetch(${process.env.NEXT_PUBLIC_CAFE24_API_URL}/customergroups`, {
headers: {
'Content-Type': 'application/json',...when I make request with any hook, the request is sent three times before showing the error message.
How can I make to just send one request before handling the error?
autocomplete infinite scroll
how can i add pagination to Autocomplete component on scroll, it will fetch new options everytime i scroll to end
redirect after create
on succesfull form submit on create or edit, it automatically readirects to list page but i want to additional queryparams to it when redirecting to list
How to filter on relation fields in a DataGrid?
I have a DataGrid that has a column with a relationship field. I show this field with its 'name' field. How can I configure the DataGrid filter to be able to filter using this 'name' field?
How to use props?
PointList receives points as props.
How do I change the points data to be used in useDataGrid, useExport, useForm?
```
export default function PointList({ points }: any) {
type PointDetail = IPointDetailItem[] | ''...
Autocomplete not working inside UseModalFormReturnType component
I am trying to use Autocomplete in separate drawer component. When I console.log value onChange or in getOptionLabel, values are there as they should be but nothing shows up in Controller.
App-CRM
First of all, love refine. This is so cool, but i am still very new to coding and i've been stuck for hours now.
I'm trying to continue working on this example
https://example.crm.refine.dev/
...