1+ import { useNavigation } from "@react-navigation/native" ;
12import React , { useEffect , useState } from "react" ;
23import { ScrollView , StyleSheet , View } from "react-native" ;
3- import { useNavigation } from "@react-navigation/native" ;
4- import { useAppContext } from "../context/AppContext" ;
5- import { InAppMessageType } from "../models/InAppMessageType" ;
6- import TooltipHelper , { TooltipData } from "../services/TooltipHelper" ;
7- import LogView from "../components/LogView" ;
8- import LoadingOverlay from "../components/LoadingOverlay" ;
94import ActionButton from "../components/ActionButton" ;
5+ import LoadingOverlay from "../components/LoadingOverlay" ;
6+ import LogView from "../components/LogView" ;
107import TooltipModal from "../components/modals/TooltipModal" ;
8+ import AliasesSection from "../components/sections/AliasesSection" ;
119import AppSection from "../components/sections/AppSection" ;
12- import UserSection from "../components/sections/UserSection" ;
13- import PushSection from "../components/sections/PushSection" ;
14- import SendPushSection from "../components/sections/SendPushSection" ;
10+ import EmailsSection from "../components/sections/EmailsSection" ;
1511import InAppSection from "../components/sections/InAppSection" ;
12+ import LocationSection from "../components/sections/LocationSection" ;
13+ import OutcomesSection from "../components/sections/OutcomesSection" ;
14+ import PushSection from "../components/sections/PushSection" ;
1615import SendIamSection from "../components/sections/SendIamSection" ;
17- import AliasesSection from "../components/sections/AliasesSection" ;
18- import EmailsSection from "../components/sections/EmailsSection" ;
16+ import SendPushSection from "../components/sections/SendPushSection" ;
1917import SmsSection from "../components/sections/SmsSection" ;
2018import TagsSection from "../components/sections/TagsSection" ;
21- import OutcomesSection from "../components/sections/OutcomesSection" ;
22- import TriggersSection from "../components/sections/TriggersSection" ;
2319import TrackEventSection from "../components/sections/TrackEventSection" ;
24- import LocationSection from "../components/sections/LocationSection" ;
20+ import TriggersSection from "../components/sections/TriggersSection" ;
21+ import UserSection from "../components/sections/UserSection" ;
22+ import { useAppContext } from "../context/AppContext" ;
23+ import { InAppMessageType } from "../models/InAppMessageType" ;
24+ import TooltipHelper , { TooltipData } from "../services/TooltipHelper" ;
2525import { AppColors } from "../theme" ;
2626
2727export default function HomeScreen ( ) {
@@ -35,7 +35,6 @@ export default function HomeScreen() {
3535 // Auto-request push permission on load
3636 useEffect ( ( ) => {
3737 void app . promptPush ( ) ;
38- // eslint-disable-next-line react-hooks/exhaustive-deps
3938 } , [ ] ) ;
4039
4140 const showTooltipModal = ( key : string ) => {
0 commit comments