File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
gettingStartedDocs/console Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff 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 (
Original file line number Diff line number Diff 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 >
You can’t perform that action at this time.
0 commit comments