rival-black
rival-black12mo ago

Thanks man, appreciate the tip!

Thanks man, appreciate the tip!
17 Replies
plain-purple
plain-purple12mo ago
Automatically or me manually? I had to do it manually
harsh-harlequin
harsh-harlequin12mo ago
Is it the — — should be one set — ?
rival-black
rival-blackOP12mo ago
yep, that is a code for the command line to clone that Refine example project locally. after that command, you can do npm install and npm run dev to play around in that example in a local server (localhost:5173 by default, I believe)
adverse-sapphire
adverse-sapphire12mo ago
can anyone help with the issue regarding to IP Address , like i'm integrating a payment gateway where they need the ip address from where we are testing (public static IP to be exact what they had mentioned out) but i'm working from home and so ip is dynamic which changes with everytime of connection so is there any solution for this or like how can i make it with any?
harsh-harlequin
harsh-harlequin12mo ago
are you looking for a dynamic dns?
Dynamic DNS (Dynamic Domain Name System) is a method that allows the automatic updating of a domain name system's (DNS) records for a host name. It is used primarily to update DNS records without manual intervention, enabling devices to maintain the same domain name even when their IP address changes.
Dynamic DNS (Dynamic Domain Name System) is a method that allows the automatic updating of a domain name system's (DNS) records for a host name. It is used primarily to update DNS records without manual intervention, enabling devices to maintain the same domain name even when their IP address changes.
adverse-sapphire
adverse-sapphire12mo ago
i had just conncted to my wifi (home)
rare-sapphire
rare-sapphire12mo ago
Hey were you able to resolve this ?
inland-turquoise
inland-turquoise12mo ago
No
fascinating-indigo
fascinating-indigo12mo ago
Hey, I'm a college student (sophomore). I'm new to this community. Am I allowed to contribute here? If yes, can I just pick some good first issues and solve them -- or is there anything I need to prior to that? Any response would be appreciated. Thanks! Just in case you want to know : Yes, I'm familiar with the tech-stack of this repo. Also, I've seen the issues -- there aren't much good first issues available?
plain-purple
plain-purple12mo ago
Got it. Unfortunately that didn't work for me after trying several times it didn't clone the repo. I had to do it manually as in executing the git clone command myself. I tried both but it didn't work 😕
flat-fuchsia
flat-fuchsia11mo ago
GitHub
Column resize in 6.0 is not shrinking properly · Issue #8463 · mui/...
Duplicates I have searched the existing issues Latest version I have tested the latest version Steps to reproduce 🕹 Link to live example: https://codesandbox.io/p/sandbox/tender-cache-73xe6c https:...
flat-fuchsia
flat-fuchsia11mo ago
After updating refine to latest version, I can't find <DeleteButton> on the list. Even it is in the code.
rare-sapphire
rare-sapphire11mo ago
Hey people As anyone created client portal using refine ?
eager-peach
eager-peach11mo ago
Are the starter templates still maintained? The AntD starter project seems to come with a bunch of errors.
fair-rose
fair-rose11mo ago
Hi, I'm trying to follow the example online in Refine's docs for useForm, but I'm getting this error when I use this hook for the "resource" property. Any ideas? Object literal may only specify known properties, and 'resource' does not exist in type 'UseFormProps<Product, HttpError, FieldValues, {}, Product, Product, HttpError>'.ts(2353)
fair-rose
fair-rose11mo ago
Found a related issue here: https://github.com/refinedev/refine/issues/3726 - the docs are out of date...
GitHub
[DOC] react-hook-form useForm hook example · Issue #3726 · refinede...
Documentation issue the code given as example at https://refine.dev/docs/packages/documentation/react-hook-form/useForm/#resource useForm({ resource: "categories", }); is not correct. It ...
extended-salmon
extended-salmon11mo ago
this might be a pretty basic question but how do you make a new page show up in the main view like the demo apps? my new page shows in the sidebar but navigates to a new page unlike the 2 existing demo apps I added this to my resources in src/app/layout ( using the nextjs version)
{
name: "createUser",
list: "/create-user",
meta: {
label: "Create User",
},
},
{
name: "createUser",
list: "/create-user",
meta: {
label: "Create User",
},
},
but navigates to a new page instead of showing within the main view

Did you find this page helpful?