2,522,281 questions
Score of -1
-1
votes
0 answers
0
answers
60 views
60
views
Webpack parsing error when bundling fine-looking files
Webpack seems to choke on a ?? operator.
Source file:
export function error(msg) {
alert("An internal error occured : " + (msg ?? "<unknown reasons>"));
throw ...
Score of 0
0
votes
0 answers
0
answers
44 views
44
views
The Cloudinary image upload returns 403 when uploading a profile image with Multer and Express
I am practicing a PERN stack backend project using Prisma ORM, and I am implementing user registration with a profile image upload.
I am using:
- Node.js
- Express.js
- Prisma ORM
- PostgreSQL
- ...
Score of -9
-9
votes
0 answers
0
answers
126 views
126
views
Please help me with the design of an Agentic Chatbot System [closed]
so here is the situation:
- in my company i have assigned to build a chatbot/bot (will be internal, for ops and devs to identify and manage issues)
- what i have already build is, integrated it with ...
Score of 0
0
votes
1 answer
1
answer
68 views
68
views
jquery.ripples causes random glitches after running for some time [closed]
I'm using jquery.ripples (v0.6.3) as a full-screen background effect in a Next.js application.
The ripple effect initializes correctly and works as expected. However, after the page has been open for ...
Score of 1
1
vote
0 answers
0
answers
60 views
60
views
Text input stops receiving keyboard events after cancelling beforeunload confirmation in Chrome
Chrome/Edge lose keyboard input after cancelling beforeunload dialog when closing browser with multiple tabs
I'm investigating what appears to be a Chromium-specific issue and would like to know ...
Score of 2
2
votes
1 answer
1
answer
98 views
98
views
lit removing conditional checked attribute from radio
I have the following code which I am using to try check my radio button:
return html`<input type="radio" name="LogType" class="form__control form__control--radio" value="${Constants.LogTypes.Member}...
Score of -4
-4
votes
0 answers
0
answers
59 views
59
views
Getting this error: Uncaught Error: Objects are not valid as a React child (found: object with keys [duplicate]
I'm trying to make a simple cart and I keep getting the error above in addToCart function.
My obj looks like this:
export const menu = [
{
id: 1,
name: "Opção 1",
opts: [
...
Score of 0
0
votes
1 answer
1
answer
83 views
83
views
Tree Shaking / Minifying Firebase using esbuild
I'm building a web app that uses Firebase Auth. I don't use any other Firebase features.
The current version of Firebase is over 600kb. The Firebase Auth package on NPM states "This package is ...
Score of -1
-1
votes
1 answer
1
answer
106 views
106
views
Attempting to hide a video element once it finishes playing [duplicate]
My goal is that once someone enters a specific webpage, a full screen video plays for 3 seconds and then disappears once it's over, revealing the main content of the page. I know nothing about ...
Score of 0
0
votes
0 answers
0
answers
37 views
37
views
React Native Nested FlatList: Child FlatList viewability callbacks are triggered before the child is actually visible
I'm using a nested FlatList setup where the outer FlatList renders a vertical list of sections, and each section contains a horizontal FlatList. Both the parent and child lists use ...
Score of 0
0
votes
1 answer
1
answer
66 views
66
views
Content Security Policy (CSP) "unsafe-hashes" does not work as expected. Browser expecting different hash
Consider the following single HTML file:
<html>
<head>
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-hashes' 'sha256-5OdtjsKuRneco+...
Score of 1
1
vote
1 answer
1
answer
119 views
119
views
How to read the actual value of a cell as a string from an Excel file using Exceljs in Node.js? [closed]
I have written a function that reads in data from an Excel file using the Exceljs library:
const exceljs = require('exceljs');
async function readExcelFile(excelFile) {
const table = [];
...
Score of 0
0
votes
1 answer
1
answer
49 views
49
views
dynamic links with expo React Native useAudioPlayer
I am trying to play audio dynamically from a list with more than 1000 different audio files (only a few seconds each), but I keep getting the error "invalid call" when I try to load my audio ...
Score of 0
0
votes
3 answers
3
answers
109 views
109
views
Need help in 419 token Mismatch in Laravel Sanctum SPA [closed]
The issue what i am facing is like i have configured Laravel Sanctum SPA just hours ago. It was literally working and now when i again used it it did not work i configured everthing which i will show ...
Score of 0
0
votes
1 answer
1
answer
61 views
61
views
How to see service worker errors in Chromium debugger?
I have followed the instructions in the MDN page Using Service Workers.
My code is the same as on that page except, of course, for the specified array of resources to cache.
In the Chromium debugger, ...