@ant-design/pro-table not working
I added ProTable from ant-desing. The problem is with some features like fix columns which is not working.
```
const columns: ProColumns<ComparisionType>[] = [
{
dataIndex: 'comparisonName',...
How can i use query params for fetching?
I have this code:
`import { NumberField, Show, TextField } from "@refinedev/antd";
import { useShow } from "@refinedev/core";
import { Typography } from "antd";...
Filtering with between in Supabase
I'm trying to useList while filtering a date column. The format of the date in this column is YYYY-MM-DD. When trying to filter using the "between" operator, I get the following error from Supabase:
...
authProvider.ts:186 Error: Operator between is not supported
authProvider.ts:186 Error: Operator between is not supported
use refetch result in next line
When I use refetch functiom from useCustom, the data variable is not updated inmediatly, what can I do so I can use the data in the next line of the refetch?
Issues with remix and useGo with remix router
I have the following error: Cannot update a component (RouterProvider) while rendering a different component (Index). To locate the bad setState() call inside Index, follow the stack trace as described in
some of _root.tsx`:
```...Creating multiple entries with AntD's Create and useForm with Supabase
I have 2 tables: brokerage_accounts and brokerage_reports. When creating a brokerage_reports entry, I reference a brokerage_accounts entry. What I'd like to do is have a switch where the user submitting the form can select to create a single entry, or multiple entries for all brokerage_accounts entries. I know it needs to be done with a handleOnFinish function, but am unsure how to tweak my code to do what's needed.
```tsx
export const BrokerageReportCreate: React.FC = () => {
const { form, formProps, onFinish, saveButtonProps } = useForm<IBrokerageAccount>({...
how to reset modal component state on close?
this is in my modal component:
```
interface Props {
modalProps: ModalProps...
Refine and Server Components
Hello,
is there any info regarding Refine and server components?
I found this blog post: https://refine.dev/blog/react-server-components/#pros-and-cons-of-react-server-components
It's very well written but it does not say anything about refine and server components.
I searched in Discord but did not really find a lot....
refine build --sourcemap
refine build --sourcemap misses mapping for src files the custom code and only includes nodemodules
REFINE GRAPHQL MOCK DATABASE
Hello, i have a question, does refine mock database in graphql resetted?

why can't use underline as name?
why can't use underline as name?
{
name: 'temp_products',
list: 'temp-products',
create: '/temp-products/create',...
How do I send with admin ID?
```
import { AuthBindings } from '@refinedev/core'
import nookies from 'nookies'
const mockUsers = [...
How to current page to 1 on apply filters
Here is my getList code
getList: async ({ resource, pagination, filters, meta }) => {
const url =
${API_URL}/${resource};
// pagination...Refresh the page when closing the modal
```
export const PointsModal = ({ type, point_id, member_id }: PointsModalProps) => {
const {
register,
setValue,...