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
1 change: 1 addition & 0 deletions Build_plan.md
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,7 @@ Do not build any of the following until explicitly added to the build plan:
- **HF-02**: Dead code cleanup — getLogs filter + deleteLog rename — ✅ Merged
- **HF-05**: Note 200-char enforcement — LogModal + EditLogModal — ✅ Merged
- **HF-06**: develop→main PR fixes — theme tokens, ErrorBoundary on Profile, model param fix — ✅ Merged
- **HF-07**: Fix CI type check — exportUserData/deleteUserAccount imports + expo-file-system legacy API — ✅ Merged

---

Expand Down
1 change: 1 addition & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"@supabase/supabase-js": "^2.104.1",
"expo": "~54.0.33",
"expo-apple-authentication": "~8.0.8",
"expo-file-system": "~19.0.22",
"expo-font": "~14.0.11",
"expo-status-bar": "~3.0.9",
"react": "19.1.0",
Expand Down
5 changes: 3 additions & 2 deletions src/screens/ProfileScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,13 @@ import {
ActivityIndicator,
} from 'react-native';
import { useSafeAreaInsets } from 'react-native-safe-area-context';
import { Paths, File } from 'expo-file-system';
import * as FileSystem from 'expo-file-system/legacy';
import { Colors, Fonts, FontSizes, Spacing, Radius, BorderWidths, Sizes, DEFAULT_CATEGORIES } from '../constants/theme';
import { useProfile } from '../hooks/useProfile';
import { useAuth } from '../hooks/useAuth';
import { exportUserData, deleteUserAccount } from '../lib/db';

import { LogContext } from '../lib/types';
import { deleteUserAccount, exportUserData } from '../lib/db';
import { Card } from '../components/Card';
import { PillButton } from '../components/PillButton';
import { PersonIcon } from '../components/icons/PersonIcon';
Expand Down
Loading