All Questions
476,973 questions
-3 votes
0 answers
31 views
React chrome extension and React webapp with outgoing WebRTC stream [closed]
I have chrome extension made with react, and the same webapp on a website. each app should send and receive stream over webrtc. With chrome extension it works well, it sends and receives. on the ...
0 votes
2 answers
51 views
How to prevent rerender of identical component in child?
I'm trying to make a progress bar that has a transition animation. Think: a multi-page wizard, and when you advance to the next page the progress bar animates to the next step. When the progress bar ...
-3 votes
0 answers
21 views
Mantine Slider Thumb Stuck and Not Updating [closed]
I'm new to React and I'm having a problem with Mantine. My Slider is visible and the value updates, but the thumb stays stuck on the left and doesn't move at all. Here is my code: <Box ref={ref} ...
-1 votes
0 answers
33 views
When client opens it from browser history it opens JSON return not a component [closed]
I have problem with all Inertia projects. When the user opens the page from their browser history it opens a JSON not a React page. How can I prevent this? I have: "dependencies": { &...
Best practices
1 vote
4 replies
62 views
Where to manage the state of individual items in a list
So, being used other reactive frameworks I'm now starting to learn and work with React. I'm building a simple exercise and I'm struggling with the way State is managed in React, I'll already have ...
-3 votes
0 answers
29 views
Chrome throws “Failed to connect to MetaMask” even though my React project does NOT use crypto/web3 (Opera works fine) [closed]
enter image description here I’m building a normal React project (not related to blockchain, crypto, or MetaMask). However, Chrome gives this uncaught error in the console: Failed to connect to ...
0 votes
0 answers
42 views
For a large-scale React/Next.js application, when does Redux Toolkit become an anti-pattern compared to using React Query/SWR and useReducer/Context [closed]
With the maturity of server-state libraries like TanStack Query (React Query) and the improvements in React's native state management, I'm re-evaluating the necessity of Redux Toolkit for global ...
-1 votes
1 answer
37 views
TypeError: Cannot read properties of null (reading 'getConfig') [closed]
how can i resolve this problem and this my jest.config.js module.exports = { preset: 'react-native', "setupFilesAfterEnv": [ "@testing-library/jest-native/extend-expect" ]...
-1 votes
0 answers
21 views
Applying the onRowSelectionModelChange for React Material UI DataGrid [closed]
I'm trying to apply the row selection model in React Material UI. Intension here is to show the rowId when a row is selected so that I can show the row action buttons as DELETE/EDIT. I'm using the &...
-1 votes
0 answers
24 views
MUI X-date-pickers output and none visible redundant characters
I'm using "@mui/x-date-pickers": "^8.19.0" and @mui/material": "^7.3.4" in a "next": "15.5.6" application with "react-dom": "19.2....
-4 votes
0 answers
65 views
Catch error thrown from child route in tanstack
I want to control conditions related to that route in each route instead of building central navigation system in the root route that checks from and to of the navigation event. To that, my idea was ...
-4 votes
0 answers
21 views
Expo LocalAuthentication works on iPhone(IOS 26) but not on iPad mini(iPadOS 26) [closed]
A bit lost here, I have the following code running trought expo go and it does nothing on my iPad but it works fine on my phone: import * as LocalAuthentication from 'expo-local-authentication'; ...
Best practices
0 votes
1 replies
49 views
What’s the best architecture for mixing local AI + cloud AI inside a React/JS app without turning the codebase into spaghetti?
I’m trying to design a “future-proof” React/JS setup where the app can switch between different AI backends (local models like WebGPU/WebLLM, API models like OpenAI/Gemini, and maybe even custom ...
-6 votes
0 answers
31 views
How to view pdf,xlsx,docx,ppt in nextjs from s3 getobject url [closed]
My s3 url is getobject url - .pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=&X-Amz-Date=&X-Amz-Expires=&X-Amz-Signature=&X-Amz-...
-1 votes
0 answers
50 views
Getting spacing and alignment in JSON Forms correctly
I'm trying to use JSON Forms to create different forms for my website, and I'm using custom buttons and input fields (using custom renderers) to render the form. I'm interested in making the UI right, ...