Skip to content

Commit 9a120e9

Browse files
cursor feedback
1 parent ac86751 commit 9a120e9

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

static/app/components/modals/privateGamingSdkAccessModal.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ export interface PrivateGamingSdkAccessModalProps {
2323
organization: Organization;
2424
projectSlug: string;
2525
sdkName: string;
26-
source: string;
2726
gamingPlatform?: GamingPlatform;
2827
onSubmit?: () => void;
2928
}
@@ -38,7 +37,6 @@ export function PrivateGamingSdkAccessModal({
3837
sdkName,
3938
gamingPlatform,
4039
onSubmit,
41-
source,
4240
}: PrivateGamingSdkAccessModalProps & ModalRenderProps) {
4341
const user = useUser();
4442
const [isSubmitting, setIsSubmitting] = useState(false);
@@ -75,6 +73,8 @@ export function PrivateGamingSdkAccessModal({
7573
`GitHub Profile: ${githubProfile}`,
7674
].join('\n');
7775

76+
const source = `${sdkName.toLowerCase()}-sdk-access`;
77+
7878
// Use captureFeedback with proper user context instead of tags
7979
captureFeedback(
8080
{
@@ -115,7 +115,6 @@ export function PrivateGamingSdkAccessModal({
115115
closeModal,
116116
onSubmit,
117117
projectSlug,
118-
source,
119118
]);
120119

121120
return (

static/app/gettingStartedDocs/console/playstation.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ const onboarding: OnboardingConfig = {
5252
projectSlug: params.projectSlug,
5353
sdkName: 'PlayStation',
5454
gamingPlatform: 'playstation',
55-
source: 'playstation-sdk-access',
5655
});
5756
}}
5857
>

0 commit comments

Comments
 (0)