File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,11 @@ export const updateIntercomUserData = ({ address }: { address?: string }) => {
12
12
boot ( {
13
13
app_id : INTERCOM_APP_ID ,
14
14
name : address ,
15
+ hide_default_launcher : false , // Keep the bubble/icon visible at all times
16
+ // Positioning options
17
+ alignment : "right" ,
18
+ horizontal_padding : 20 ,
19
+ vertical_padding : 20 ,
15
20
} ) ;
16
21
} ;
17
22
@@ -20,8 +25,13 @@ export const useIntercom = () => {
20
25
const { isConnected } = useAppKitAccount ( ) ;
21
26
22
27
const initialize = useCallback ( ( ) => {
23
- Intercom ( {
28
+ boot ( {
24
29
app_id : INTERCOM_APP_ID ,
30
+ hide_default_launcher : false , // Keep the bubble/icon visible at all times
31
+ // Positioning options
32
+ alignment : "right" ,
33
+ horizontal_padding : 20 ,
34
+ vertical_padding : 20 ,
25
35
} ) ;
26
36
} , [ ] ) ;
27
37
You can’t perform that action at this time.
0 commit comments