Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@
"jest-environment-jsdom": "30.0.4",
"jest-fail-on-console": "3.3.1",
"jest-junit": "16.0.0",
"knip": "5.64.0",
"knip": "5.71.0",
"postcss-styled-syntax": "0.7.0",
"react-refresh": "0.18.0",
"stylelint": "16.10.0",
Expand Down
445 changes: 224 additions & 221 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

20 changes: 3 additions & 17 deletions static/app/actionCreators/modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import type {ReprocessEventModalOptions} from 'sentry/components/modals/reproces
import type {TokenRegenerationConfirmationModalProps} from 'sentry/components/modals/tokenRegenerationConfirmationModal';
import type {AddToDashboardModalProps} from 'sentry/components/modals/widgetBuilder/addToDashboardModal';
import type {LinkToDashboardModalProps} from 'sentry/components/modals/widgetBuilder/linkToDashboardModal';
import type {OverwriteWidgetModalProps} from 'sentry/components/modals/widgetBuilder/overwriteWidgetModal';
import type {WidgetViewerModalOptions} from 'sentry/components/modals/widgetViewerModal';
import type {ConsoleModalProps} from 'sentry/components/onboarding/consoleModal';
import type {Category} from 'sentry/components/platformPicker';
Expand Down Expand Up @@ -263,19 +262,6 @@ export async function openInviteMissingMembersModal({
});
}

export async function openWidgetBuilderOverwriteModal(
options: OverwriteWidgetModalProps
) {
const {default: Modal, modalCss} = await import(
'sentry/components/modals/widgetBuilder/overwriteWidgetModal'
);

openModal(deps => <Modal {...deps} {...options} />, {
closeEvents: 'escape-key',
modalCss,
});
}

export async function openAddToDashboardModal(options: AddToDashboardModalProps) {
const {default: Modal, modalCss} = await import(
'sentry/components/modals/widgetBuilder/addToDashboardModal'
Expand Down Expand Up @@ -328,7 +314,7 @@ export async function demoSignupModal(options: ModalOptions = {}) {
openModal(deps => <Modal {...deps} {...options} />, {modalCss});
}

export type DemoEndModalOptions = {
type DemoEndModalOptions = {
tour: string;
};

Expand Down Expand Up @@ -389,7 +375,7 @@ export async function openCreateReleaseIntegration(
openModal(deps => <Modal {...deps} {...options} />);
}

export type NavigateToExternalLinkModalOptions = {
type NavigateToExternalLinkModalOptions = {
linkText: string;
};

Expand Down Expand Up @@ -488,7 +474,7 @@ export async function openPrivateGamingSdkAccessModal(
openModal(deps => <PrivateGamingSdkAccessModal {...deps} {...options} />);
}

export type InsightInfoModalOptions = {
type InsightInfoModalOptions = {
children: React.ReactNode;
title: string;
};
Expand Down

This file was deleted.

This file was deleted.

2 changes: 1 addition & 1 deletion static/app/utils/issueTypeConfig/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ const issueTypeConfig: Config = {
* errors that may otherwise be difficult to debug. For example, common framework
* errors that have no stack trace.
*/
export function shouldShowCustomErrorResourceConfig(
function shouldShowCustomErrorResourceConfig(
params: GetConfigForIssueTypeParams,
project: Project
): boolean {
Expand Down

This file was deleted.

2 changes: 1 addition & 1 deletion static/app/views/dashboards/widgetLibrary/data.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import type {Widget} from 'sentry/views/dashboards/types';
import {DisplayType, WidgetType} from 'sentry/views/dashboards/types';
import {hasDatasetSelector} from 'sentry/views/dashboards/utils';

export type WidgetTemplate = Widget & {
type WidgetTemplate = Widget & {
description: string;
};

Expand Down
Loading