File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
dotcom-rendering/src/lib/braze Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ import {
19
19
setHasCurrentBrazeUser ,
20
20
} from '../hasCurrentBrazeUser' ;
21
21
import { checkBrazeDependencies } from './checkBrazeDependencies' ;
22
- import { getInitialisedAppboy } from './initialiseAppboy ' ;
22
+ import { getInitialisedBraze } from './initialiseBraze ' ;
23
23
24
24
const maybeWipeUserData = async (
25
25
apiKey ?: string ,
@@ -35,7 +35,7 @@ const maybeWipeUserData = async (
35
35
if ( userHasLoggedOut || userHasRemovedConsent || brazeHasBeenDisabled ) {
36
36
try {
37
37
if ( apiKey ) {
38
- const appboy = await getInitialisedAppboy ( apiKey ) ;
38
+ const appboy = await getInitialisedBraze ( apiKey ) ;
39
39
appboy . wipeData ( ) ;
40
40
}
41
41
LocalMessageCache . clear ( ) ;
@@ -98,7 +98,7 @@ export const buildBrazeMessaging = async (
98
98
'braze-sdk-load' ,
99
99
) ;
100
100
101
- const appboy = await getInitialisedAppboy (
101
+ const appboy = await getInitialisedBraze (
102
102
dependenciesResult . data . apiKey as string ,
103
103
) ;
104
104
You can’t perform that action at this time.
0 commit comments