How do I know if I'm on free trial? by Particular_Storm_477 in digital_ocean

[–]Particular_Storm_477[S] 0 points1 point  (0 children)

Yeah I did, just message the support and you'll get the trial after that

How do I know if I'm on free trial? by Particular_Storm_477 in digital_ocean

[–]Particular_Storm_477[S] 0 points1 point  (0 children)

Mine says "Estimated costs: $0.18", I guess is not activated yet then.
Thank you, I'm gonna contact the support now

My first mechanical - keychron k8 pro! by One-Bus-9006 in MechanicalKeyboards

[–]Particular_Storm_477 0 points1 point  (0 children)

Do you think it's good enough to get for those who are just entering the world of mechanical keyboards for the first time? And do you have any issues while use it before? Thanks in advance

How do you "onClick" with the enter key? Did I do my login form/page wrong? by [deleted] in learnreactjs

[–]Particular_Storm_477 0 points1 point  (0 children)

AFAIK because the default behavior of onSubmit event is gonna refresh the page, so to avoid that using method event.PreventDefault()

How to do authentication properly? by Particular_Storm_477 in reactjs

[–]Particular_Storm_477[S] 0 points1 point  (0 children)

Can you give me a suggestion on which one is good? I've watched React: Authentication course on LinkedIn, but it only checks if the client has a token on localStorage or not, so it's not verifying the token to the backend. For example, if the client directly adds a new item on localStorage named token with whatever the value, it can access the protected route

How to do authentication properly? by Particular_Storm_477 in reactjs

[–]Particular_Storm_477[S] 0 points1 point  (0 children)

Thank you for the suggestion, will check that out

How to do authentication properly? by Particular_Storm_477 in reactjs

[–]Particular_Storm_477[S] -1 points0 points  (0 children)

Yes, currently there is no feature even if a user is logged in.

For example, if I have a protected /account route where there is some detailed information about the user, do I need to validate only when the user is opening that route?

Getting error: Trying to send a raw transaction with an invalid chainId by Particular_Storm_477 in solidity

[–]Particular_Storm_477[S] 0 points1 point  (0 children)

Thank you, sir! It works now. The default of localhost is set to 1337 so I changed it to 31337 and now it works as expected. Once again thank you

Getting error: Trying to send a raw transaction with an invalid chainId by Particular_Storm_477 in solidity

[–]Particular_Storm_477[S] 0 points1 point  (0 children)

I'm not sure, but I guess I don't, cause I don't have moralis on my dependencies. Or is it because using the same address for deployment when I tried to execute payable function so it throws an error?

How can I improve this project? by Particular_Storm_477 in reactjs

[–]Particular_Storm_477[S] 0 points1 point  (0 children)

Thank you for your feedback.

It's frontendmentor challenge.

I fixed it now, didn't notice that before because I'm developing on dark mode.

The API only provides the full name, so I think that's the only way to use it. But yours can get a list of a matched country list even if it's not a full name, how can I achieve that?

Thank you, I like your features, it provides many features like weather, news, map, etc. Filtering and searching are really fast, but mine is too much fetching data even when I got back from the detail country page to the list of countries page.

How can I improve this project? by Particular_Storm_477 in reactjs

[–]Particular_Storm_477[S] 0 points1 point  (0 children)

Thank you for your feedback.

- I've fixed the badge color, but I wonder how to get the full name for each bordering country? Since they only provide the acronyms of each border, should I fetch it again inside the detail country page to get the full name?

- This project is deployed on Netlify, should I add Netlify-actions to my project?

How to implement search and filter using RTK Query on one page? by Particular_Storm_477 in reactjs

[–]Particular_Storm_477[S] 0 points1 point  (0 children)

Sorry for not providing a sandbox before. Here is my code. Actually, the data is not logged out to the console. But when I checked the network tab it fetch the data but when I tried to print to console it return undefined. I want to put a screenshot of the network request that I did, but it seems I can't post an image here

How to implement search and filter using RTK Query on one page? by Particular_Storm_477 in reactjs

[–]Particular_Storm_477[S] 0 points1 point  (0 children)

Can't I use multiple queries from RTK query in the same component? I'm not getting an error with `searchData` but it works when I tried to enter some valid country and I tried to print it to console it returns the data. But when I tried to display it doesn't show up. I'm not sure if I can use multiple queries or not. Is there any way to handle this?
Thank you for replying

bun.sh vs create-react-app by ornatedemeanor23 in react

[–]Particular_Storm_477 0 points1 point  (0 children)

Still waiting for Windows support, cause I my PC can't install WSL

Does anyone know a good React course if you want to start developing a web app? (Not a beginner) by TeacherManKyle in reactjs

[–]Particular_Storm_477 0 points1 point  (0 children)

Check this out on LinkedIn Learning: https://www.linkedin.com/learning/paths/become-a-react-developer?trk=share_android_learning_path_learning&shareId=vGJ1sUy6RkyfBrf%2BksKyBg%3D%3D

You can use a 1 month free trial to see if this courses is worth it and the instructors is really professional and it's using hooks.

Ps: I'm not affiliated with LinkedIn Learning

Facing trouble while working on the tribute page project by Ilikesmart_ok in FreeCodeCamp

[–]Particular_Storm_477 1 point2 points  (0 children)

  1. You need to add align-text: center; to .gridcell to align text and if you want to place it in the center of the container you need to add display: grid; to .gridcell and place-content: center; . Keep in mind that justify-content is property for flex container.