Skip to content

Commit 186d6ee

Browse files
committed
🔥 rm unused props
1 parent 601ddb8 commit 186d6ee

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

static/app/views/issueDetails/actions/newIssueExperienceButton.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@ export function NewIssueExperienceButton() {
8484
openModal(
8585
props => (
8686
<IssueDetailsTourModal
87-
{...props}
8887
handleDismissTour={() => {
8988
mutateAssistant({guide: ISSUE_DETAILS_TOUR_GUIDE_KEY, status: 'dismissed'});
9089
tourDispatch({type: 'SET_COMPLETION', isCompleted: true});

static/app/views/issueDetails/issueDetailsTourModal.tsx

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,12 @@ import styled from '@emotion/styled';
33

44
import issueDetailsPreviewImage from 'sentry-images/spot/issue-details-preview.svg';
55

6-
import type {ModalRenderProps} from 'sentry/actionCreators/modal';
76
import {TextTourAction, TourAction} from 'sentry/components/tours/components';
87
import {t} from 'sentry/locale';
98
import {space} from 'sentry/styles/space';
109
import {darkTheme} from 'sentry/utils/theme';
1110

12-
interface IssueDetailsTourModalProps extends ModalRenderProps {
11+
interface IssueDetailsTourModalProps {
1312
handleDismissTour: () => void;
1413
handleStartTour: () => void;
1514
}

0 commit comments

Comments
 (0)