afraid-scarlet
afraid-scarlet9mo ago

Thanks man, appreciate the tip!

Thanks man, appreciate the tip!
17 Replies
other-emerald
other-emerald9mo ago
Automatically or me manually? I had to do it manually
flat-fuchsia
flat-fuchsia9mo ago
Is it the — — should be one set — ?
afraid-scarlet
afraid-scarletOP9mo 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)
crude-lavender
crude-lavender9mo 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?
flat-fuchsia
flat-fuchsia9mo 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.
crude-lavender
crude-lavender9mo ago
i had just conncted to my wifi (home)
sensitive-blue
sensitive-blue9mo ago
Hey were you able to resolve this ?
exotic-emerald
exotic-emerald9mo ago
No
ratty-blush
ratty-blush9mo 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?
other-emerald
other-emerald9mo 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 😕
xenial-black
xenial-black9mo 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:...
xenial-black
xenial-black9mo ago
After updating refine to latest version, I can't find <DeleteButton> on the list. Even it is in the code.
sensitive-blue
sensitive-blue9mo ago
Hey people As anyone created client portal using refine ?
fascinating-indigo
fascinating-indigo9mo ago
Are the starter templates still maintained? The AntD starter project seems to come with a bunch of errors.
like-gold
like-gold9mo 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)
like-gold
like-gold9mo 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 ...
solid-orange
solid-orange9mo 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?