CustomLoginLogo
hello, can i customize the login page <AuthPage> with my custom logo and color without altering the authentication from the provider.
Animation on main Page?
Hi guys, short question, does anyone happen to know how / with what they made the animation on their website (main page right side)?

Popup.js Error
Hello! I'm following the amazing CRM application tut by JavaScript Mastery and stumbled across an issue right around the 54:15 mark of the video. When I use run npm dev in the console my app loads but the console provides the following error. I cannot login or be redirected to the home page either. Could I please get some assistance? Thanks!
popup.js:1 Uncaught TypeError: Cannot read properties of undefined (reading 'create')
at popup.js:1:13
...
Many requests using form
I have this kind of form
```
const { form, formProps, saveButtonProps, onFinish, queryResult } = useForm({
id,
action: RESOURCES_ACTION_EDIT,...
overtime.elapsedTime not reported when isFetching on on isLoading
overtime.elapsedTime not reported when isFetching only on isLoading
Fully customize menu items AntD
Now the menu items are following the order of resources of <Refine>.
I want to have a fully customize menu list, in terms of create menu items that aren't link to any resources,......
import export button with create button
this is my code
<List
headerButtons={[
<ImportButton {...importProps} />,...
Role Based Authentication And Authorization
i have a rest api backend from which i get the api data like for login i get this response
https://example/api/login/
https://example/api/logout/
...
How can I link my crm minimalist to Mongodb? Please Help i don't want to fail my class.
How can I link the crm to a Mongodb Database?

casbin with refine
im trying to make an accessControlProvider with casbin following to refine's tutorial, but when i npm start, i get following error:
Identifier 'Buffer' has already been declared (at casbin.js?v=248064cd:6:3)
i have configured polyfills for vite as following:
import react from "@vitejs/plugin-react";...
Show single record on a page AntD Refine
I have a list page
<List>
<Table {...tableProps} rowKey="id">
<Table.Column/><Table.Column/><Table.Column/><Table.Column/>
</List>...
How do I create an app with version 3?
I'm following a tutorial on youtube to build a full stack CRUD app, and the guy in the video is using version 3 because it was the newest at the time. I can't quite figure out how to do it on my computer. I can only get version 4.
CanAccess usage recommendation
Is it bad to use the CanAccess component in the
_app.tsx file?
```
function MyApp({ Component, pageProps }: AppPropsWithLayout): JSX.Element {
// ......AntD Refine show 1 record
I want to create a page to show a record in my table using Refine and Antd. What's the proper conventional way to code the "show" page using useOne and setup so that it dynamically get the id from the route "show: "/patient/show/:id"?