Files
HausApp/apps/native/app/(app)/ich/index.tsx
René Schober 9ddc7c6d7a Production deployment setup + feature complete
- Dockerfile + deploy.sh for Hetzner server
- Email verification via Better Auth + Resend
- Invite code flow (6-digit OTP, generate/join)
- Settlement share percent fix (payer vs debtor)
- OCR scanner fixes (date display, retry, viewfinder)
- app.json icon/splash/adaptive-icon configured
- iOS deployment target 15.5 (ML Kit requirement)
- DB migration 0014: household_invitations table

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-20 11:54:22 +01:00

24 lines
711 B
TypeScript

import { TransactionScreen } from "@/src/components/features/transactions/TransactionScreen";
import { DebtsSection } from "@/src/components/features/debts/DebtsSection";
import { ClaimsSection } from "@/src/components/features/debts/ClaimsSection";
import { View } from "react-native";
import { useTranslation } from "react-i18next";
export default function IchScreen() {
const { t } = useTranslation();
return (
<TransactionScreen
scope="private"
accentColor="#7c3aed"
emptyTitle={t('me.noTransactions')}
emptySubtitle={t('me.noTransactionsHint')}
headerExtra={
<View>
<DebtsSection />
<ClaimsSection />
</View>
}
/>
);
}