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
20 changes: 0 additions & 20 deletions static/app/components/replays/header/feedbackButton.tsx

This file was deleted.

2 changes: 0 additions & 2 deletions static/app/types/hooks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ type DisabledMemberTooltipProps = {children: React.ReactNode};

type DashboardHeadersProps = {organization: Organization};

type ReplayFeedbackButton = {children: React.ReactNode};
type ReplayListPageHeaderProps = {children?: React.ReactNode};
type ReplayOnboardingAlertProps = {children: React.ReactNode};
type ReplayOnboardingCTAProps = {children: React.ReactNode; organization: Organization};
Expand Down Expand Up @@ -207,7 +206,6 @@ type ComponentHooks = {
'component:product-selection-availability': () => React.ComponentType<ProductSelectionAvailabilityProps>;
'component:product-unavailable-cta': () => React.ComponentType<ProductUnavailableCTAProps>;
'component:profiling-billing-banner': () => React.ComponentType<ProfilingBetaAlertBannerProps>;
'component:replay-feedback-button': () => React.ComponentType<ReplayFeedbackButton>;
'component:replay-list-page-header': () => React.ComponentType<ReplayListPageHeaderProps> | null;
'component:replay-onboarding-alert': () => React.ComponentType<ReplayOnboardingAlertProps>;
'component:replay-onboarding-cta': () => React.ComponentType<ReplayOnboardingCTAProps>;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import FeedbackButton from 'sentry/components/feedbackButton/feedbackButton';
import * as Layout from 'sentry/components/layouts/thirds';
import Placeholder from 'sentry/components/placeholder';
import ConfigureReplayCard from 'sentry/components/replays/header/configureReplayCard';
import ReplayFeedbackButton from 'sentry/components/replays/header/feedbackButton';
import ReplayLoadingState from 'sentry/components/replays/player/replayLoadingState';
import {space} from 'sentry/styles/space';
import type useLoadReplayReader from 'sentry/utils/replays/hooks/useLoadReplayReader';
Expand Down Expand Up @@ -37,7 +36,7 @@ export default function ReplayDetailsHeaderActions({readerResult}: Props) {
>
{({replay}) => (
<ButtonActionsWrapper>
{replay.isVideoReplay() ? <FeedbackButton /> : <ReplayFeedbackButton />}
<FeedbackButton />
<ConfigureReplayCard
isMobile={replay.isVideoReplay()}
replayRecord={replay.getReplay()}
Expand Down
29 changes: 0 additions & 29 deletions static/gsApp/components/replayZendeskFeedback.tsx

This file was deleted.

2 changes: 0 additions & 2 deletions static/gsApp/registerHooks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ import PowerFeatureHovercard from 'getsentry/components/powerFeatureHovercard';
import {ProductSelectionAvailability} from 'getsentry/components/productSelectionAvailability';
import {ProductUnavailableCTA} from 'getsentry/components/productUnavailableCTA';
import ReplayOnboardingCTA from 'getsentry/components/replayOnboardingCTA';
import ReplayZendeskFeedback from 'getsentry/components/replayZendeskFeedback';
import SuperuserWarning, {
shouldExcludeOrg,
} from 'getsentry/components/superuser/superuserWarning';
Expand Down Expand Up @@ -222,7 +221,6 @@ const GETSENTRY_HOOKS: Partial<Hooks> = {
'component:first-party-integration-alert': () => FirstPartyIntegrationAlertHook,
'component:first-party-integration-additional-cta': () =>
FirstPartyIntegrationAdditionalCTA,
'component:replay-feedback-button': () => ReplayZendeskFeedback,
'component:replay-onboarding-alert': () => ReplayOnboardingAlert,
'component:replay-onboarding-cta': () => ReplayOnboardingCTA,
'component:replay-settings-alert': () => ReplaySettingsAlert,
Expand Down
Loading