Browse Source

ref(useOnboardingQueryParams): Remove showLoader (#77699)

Priscila Oliveira 5 months ago
parent
commit
a2db6bb144

+ 0 - 5
static/app/views/onboarding/components/useOnboardingQueryParams.tsx

@@ -10,10 +10,6 @@ type QueryValues = {
    * Used to show product selection (error monitoring, tracing, profiling and session replay) for certain platforms, e.g. javascript-react
    */
   product: string[];
-  /**
-   * Used to show the loader script for when the platform is javascript
-   */
-  showLoader: boolean;
   /**
    * Used to show or not the integration onboarding for certain platforms, e.g. AWS (python)
    */
@@ -29,7 +25,6 @@ export function useOnboardingQueryParams(): [
   const params = useLocationQuery({
     fields: {
       product: decodeList,
-      showLoader: decodeBoolean,
       showManualSetup: decodeBoolean,
     },
   });