@@ -42,24 +42,21 @@ export const FreeTrialProvider = ({children}: FreeTrialProviderProps) => {
42
42
}
43
43
} , [ showDialog , data , showOnLoad , telemetry ] )
44
44
45
- // This is casted to a string to make it stable across renders so it doesn't trigger multiple times the effect.
46
- const searchParamsAsString = new URLSearchParams ( router . state . _searchParams ) . toString ( )
45
+ // See if we have any parameters from the current route
46
+ // to pass onto our query
47
+ const searchParams = new URLSearchParams ( router . state . _searchParams )
48
+ // Allows us to override the current state of the trial to
49
+ // get back certain modals based on the current experience
50
+ // can be 'growth-trial', 'growth-trial-ending', or 'post-growth-trial'
51
+ const trialState = searchParams . get ( 'trialState' )
52
+ // Allows us to set whether we've seen the modals before
53
+ // or whether this is our first time seeing them (i.e. show a popup)
54
+ const seenBefore = searchParams . get ( 'seenBefore' )
47
55
48
56
useEffect ( ( ) => {
49
- // See if we have any parameters from the current route
50
- // to pass onto our query
51
- const searchParams = new URLSearchParams ( searchParamsAsString )
52
-
53
57
const queryParams = new URLSearchParams ( )
54
58
queryParams . append ( 'studioVersion' , SANITY_VERSION )
55
- // Allows us to override the current state of the trial to
56
- // get back certain modals based on the current experience
57
- // can be 'growth-trial', 'growth-trial-ending', or 'post-growth-trial'
58
- const trialState = searchParams . get ( 'trialState' )
59
59
if ( trialState ) queryParams . append ( 'trialState' , trialState )
60
- // Allows us to set whether we've seen the modals before
61
- // or whether this is our first time seeing them (i.e. show a popup)
62
- const seenBefore = searchParams . get ( 'seenBefore' )
63
60
if ( seenBefore ) queryParams . append ( 'seenBefore' , seenBefore )
64
61
// If we have trialState, query the override endpoint so that we
65
62
// get back trial modals for that state
@@ -84,7 +81,7 @@ export const FreeTrialProvider = ({children}: FreeTrialProviderProps) => {
84
81
return ( ) => {
85
82
request . unsubscribe ( )
86
83
}
87
- } , [ client , searchParamsAsString ] )
84
+ } , [ client , seenBefore , trialState ] )
88
85
89
86
const toggleShowContent = useCallback (
90
87
( closeAndReOpen = false ) => {
0 commit comments