Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,10 @@ load-tests/reports/*
.expo-shared/


# Test snapshots
__snapshots__/
*.snap

# Build artifacts
build_errors*.txt
*.log
Expand Down
6 changes: 6 additions & 0 deletions src/navigation/AppNavigator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ const PerformanceDashboardScreen = lazyScreen(
const EditSubscriptionScreen = lazyScreen(() => import('../screens/EditSubscriptionScreen'));
const ChangePlanScreen = lazyScreen(() => import('../screens/ChangePlanScreen'));
const BillingSettingsScreen = lazyScreen(() => import('../screens/BillingSettingsScreen'));
const CustomerHealthScreen = lazyScreen(() => import('../screens/CustomerHealthScreen'));
const PaymentMethodsScreen = lazyScreen(() =>
import('../../app/screens/PaymentMethodsScreen').then((m) => ({
default: m.PaymentMethodsScreen,
Expand Down Expand Up @@ -338,6 +339,11 @@ const SettingsStack = () => (
component={PerformanceDashboardScreen}
options={{ title: 'Performance', headerShown: true }}
/>
<Stack.Screen
name="CustomerHealth"
component={CustomerHealthScreen}
options={{ title: 'Customer Health', headerShown: true }}
/>
<Stack.Screen
name="BillingSettings"
component={BillingSettingsScreen}
Expand Down
1 change: 1 addition & 0 deletions src/navigation/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ export type RootStackParamList = {
LoyaltyDashboard: undefined;
CampaignManagement: undefined;
PerformanceDashboard: undefined;
CustomerHealth: undefined;
BillingSettings: undefined;
ChangePlan: { subscriptionId: string };
PaymentMethods: undefined;
Expand Down
Loading