narrow-beige
narrow-beige8mo ago

Thanks man, appreciate the tip!

Thanks man, appreciate the tip!
17 Replies
wise-white
wise-white8mo ago
Automatically or me manually? I had to do it manually
correct-apricot
correct-apricot8mo ago
Is it the — — should be one set — ?
narrow-beige
narrow-beigeOP8mo 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)
correct-apricot
correct-apricot8mo 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?
correct-apricot
correct-apricot8mo 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.
correct-apricot
correct-apricot8mo ago
i had just conncted to my wifi (home)
adverse-sapphire
adverse-sapphire8mo ago
Hey were you able to resolve this ?
rare-sapphire
rare-sapphire8mo ago
No
rival-black
rival-black8mo 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?
wise-white
wise-white8mo 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 😕
stormy-gold
stormy-gold8mo 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:...
stormy-gold
stormy-gold8mo ago
After updating refine to latest version, I can't find <DeleteButton> on the list. Even it is in the code.
adverse-sapphire
adverse-sapphire8mo ago
Hey people As anyone created client portal using refine ?
quickest-silver
quickest-silver8mo ago
Are the starter templates still maintained? The AntD starter project seems to come with a bunch of errors.
ambitious-aqua
ambitious-aqua8mo 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)
ambitious-aqua
ambitious-aqua8mo 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 ...
other-emerald
other-emerald8mo 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?