nicolium: update more deps

Signed-off-by: nicole mikołajczyk <git@mkljczk.pl>
This commit is contained in:
nicole mikołajczyk
2026-03-01 21:24:07 +01:00
parent 8152fffbca
commit 1d360f0d3d
4 changed files with 269 additions and 270 deletions

View File

@ -57,8 +57,9 @@
"@reach/tabs": "^0.18.0",
"@react-spring/web": "^10.0.3",
"@reduxjs/toolkit": "^2.11.2",
"@sentry/browser": "^8.55.0",
"@sentry/react": "^8.55.0",
"@sentry/browser": "^10.40.0",
"@sentry/core": "^10.40.0",
"@sentry/react": "^10.40.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/typography": "^0.5.19",
@ -111,7 +112,7 @@
"query-string": "^9.3.1",
"react": "^19.2.4",
"react-color": "^2.19.3",
"react-datepicker": "^8.10.0",
"react-datepicker": "^9.1.0",
"react-dom": "^19.2.4",
"react-helmet-async": "^2.0.5",
"react-hot-toast": "^2.6.0",
@ -137,7 +138,6 @@
},
"devDependencies": {
"@formatjs/cli": "^6.13.0",
"@sentry/types": "^8.55.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
@ -150,7 +150,7 @@
"@types/react-dom": "^19.2.3",
"@types/react-sparklines": "^1.7.5",
"@types/react-swipeable-views": "^0.13.6",
"@typescript/native-preview": "7.0.0-dev.20260226.1",
"@typescript/native-preview": "7.0.0-dev.20260301.1",
"@vitejs/plugin-react": "^5.1.4",
"@vitest/coverage-v8": "4.0.18",
"eslint-plugin-formatjs": "^6.2.0",
@ -160,11 +160,11 @@
"oxlint": "^1.50.0",
"oxlint-tsgolint": "^0.15.0",
"rollup-plugin-bundle-stats": "^4.21.10",
"stylelint": "^16.26.1",
"stylelint-config-standard-scss": "^12.0.0",
"stylelint": "^17.4.0",
"stylelint-config-standard-scss": "^17.0.0",
"tailwindcss": "^3.4.19",
"tslib": "^2.8.1",
"type-fest": "^4.41.0",
"type-fest": "^5.4.4",
"typescript": "5.9.3",
"vite": "^7.3.1",
"vite-plugin-checker": "^0.12.0",

View File

@ -32,8 +32,8 @@ const SentryFeedbackForm: React.FC<ISentryFeedbackForm> = ({ eventId }) => {
await captureSentryFeedback({
name: account?.acct,
event_id: eventId,
comments: feedback,
associatedEventId: eventId,
message: feedback,
}).catch(console.error);
setIsSubmitted(true);

View File

@ -1,7 +1,7 @@
import { NODE_ENV } from '@/build-config';
import sourceCode from '@/utils/code';
import type { CaptureContext, UserFeedback } from '@sentry/types';
import type { CaptureContext, SendFeedbackParams } from '@sentry/core';
import type { Account } from 'pl-api';
import type { SetOptional } from 'type-fest';
@ -69,10 +69,10 @@ const captureSentryException = async (
/** Capture user feedback and report it to Sentry. */
const captureSentryFeedback = async (
feedback: SetOptional<UserFeedback, 'name' | 'email'>,
feedback: SetOptional<SendFeedbackParams, 'name' | 'email'>,
): Promise<void> => {
const Sentry = await import('@sentry/react');
Sentry.captureUserFeedback(feedback as UserFeedback);
Sentry.captureFeedback(feedback);
};
export {

513
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff