Skip to content
Merged
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
12 changes: 12 additions & 0 deletions src/navigation/AppNavigator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ import SettingsScreen from '../screens/SettingsScreen';
import AccountingExportScreen from '../screens/AccountingExportScreen';
import WebhookSettingsScreen from '../screens/WebhookSettingsScreen';
import ErrorDashboardScreen from '../screens/ErrorDashboardScreen';
import ImportScreen from '../screens/ImportScreen';
import ExportScreen from '../screens/ExportScreen';
import AdminDashboardScreen from '../screens/AdminDashboardScreen';
import InvoiceListScreen from '../screens/InvoiceListScreen';
import InvoiceDetailScreen from '../screens/InvoiceDetailScreen';
Expand Down Expand Up @@ -160,6 +162,16 @@ const SettingsStack = () => (
component={ErrorDashboardScreen}
options={{ title: 'Error Dashboard', headerShown: true }}
/>
<Stack.Screen
name="Import"
component={ImportScreen}
options={{ title: 'Import Subscriptions', headerShown: true }}
/>
<Stack.Screen
name="Export"
component={ExportScreen}
options={{ title: 'Export Subscriptions', headerShown: true }}
/>
</Stack.Navigator>
);

Expand Down
2 changes: 2 additions & 0 deletions src/navigation/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ export type RootStackParamList = {
LanguageSettings: undefined;
SessionManagement: undefined;
ErrorDashboard: undefined;
Import: undefined;
Export: undefined;
SegmentManagement: undefined;
SegmentDetail: { segmentId: string };
Gamification: undefined;
Expand Down
Loading
Loading