Hung Viet Nguyen

Results 96 comments of Hung Viet Nguyen

@markerikson Absolutely agreed. I spend some time making the Vite React Example. I placed it here: https://github.com/nvh95/vite-react-template-redux There are still some opening items I want to bring to the discussion....

@gengjiawen I am not quite sure that you are looking at the correct repo. Both examples (typescript and javascript) in https://github.com/nvh95/vite-react-template-redux are using redux-toolkit https://github.com/nvh95/vite-react-template-redux/blob/021b4f6c9b2e5f4c71e83900f655f76d1c60ab3c/javascript/src/features/counter/counterSlice.js#L1 https://github.com/nvh95/vite-react-template-redux/blob/b7cddcb11fb985d6c1347ced2de2c66737da1f1a/typescript/src/features/counter/counterSlice.ts#L1

Following https://redux.js.org/usage/writing-tests to work on this PR, I also opened a PR to update the docs as well: - https://github.com/reduxjs/redux/pull/4381

Please try this workaround: ```bash npm install --save-dev @babel/preset-env ``` and add `babel.config.js` to your root of your project: ```js // babel.config.js module.exports = { presets: ['@babel/preset-env'], } ``` Reference:...

Please try this workaround: ```bash npm install --save-dev @babel/preset-env ``` and add `babel.config.js` to your root of your project: ```js // babel.config.js module.exports = { presets: ['@babel/preset-env'], } ``` Reference:...

@ducminhgd Can you re-run the `npm run prettier:fix` as shown in https://github.com/tamhoang1412/backend-swe-interview-questions/blob/main/CONTRIBUTING.md#how-to-contribute Thanks.

@abdulmajidashraf92 Have you resolved your problem yet? Please note that you need to handle the pop up like one of those demo: Demo 1: [Use react-router-dom](https://github.com/nvh95/react-linkedin-login-oauth2/blob/master/demo/src/index.js) Demo 2: [Not use...

In order to make it work, you need to create a route `/linkedin` and it should be `LinkedInCallback`. I recommend using `react-router-dom` as follow: ```js import React from 'react'; import...

Hi @zafarhussain633, @tleopardt, @devnexitus, Thank you for reaching us. Did you setup `LinkedInCallback` using `react-router-dom` or Next.js's file system routing as mentioned in Usage (https://github.com/nvh95/react-linkedin-login-oauth2#usage)? ```js import React from 'react';...

Hey @lynguistical, can you replicate your issue in a repository?