hansoo
4d9effce41
fix: ESLint 오류 수정 - 사용하지 않는 변수들에 underscore prefix 추가
...
- AddTransactionButton.tsx: useEffect import 제거
- BudgetProgressCard.tsx: localBudgetData를 _localBudgetData로 변경
- Header.tsx: isMobile을 _isMobile로 변경
- RecentTransactionsSection.tsx: isDeleting을 _isDeleting로 변경
- TransactionCard.tsx: cn import 제거
- ExpenseForm.tsx: useState import 제거
- cacheStrategies.ts: QueryClient, Transaction import 제거
- Analytics.tsx: Separator import 제거, 미사용 변수들에 underscore prefix 추가
- Index.tsx: useMemo import 제거
- Login.tsx: setLoginError를 _setLoginError로 변경
- Register.tsx: useEffect dependency 수정 및 useCallback 추가
- Settings.tsx: toast, handleClick에 underscore prefix 추가
- authStore.ts: setError, setAppwriteInitialized에 underscore prefix 추가
- budgetStore.ts: ranges를 _ranges로 변경
- BudgetProgressCard.test.tsx: waitFor import 제거
🤖 Generated with [Claude Code](https://claude.ai/code )
Co-Authored-By: Claude <noreply@anthropic.com >
2025-07-12 20:49:36 +09:00
hansoo
9851627ff1
feat: Add CI/CD pipeline and code quality improvements
...
- Add GitHub Actions workflow for automated CI/CD
- Configure Node.js 18.x and 20.x matrix testing
- Add TypeScript type checking step
- Add ESLint code quality checks with enhanced rules
- Add Prettier formatting verification
- Add production build validation
- Upload build artifacts for deployment
- Set up automated testing on push/PR
- Replace console.log with environment-aware logger
- Add pre-commit hooks for code quality
- Exclude archive folder from linting
🤖 Generated with [Claude Code](https://claude.ai/code )
Co-Authored-By: Claude <noreply@anthropic.com >
2025-07-12 15:27:54 +09:00
hansoo
61492549f6
Move Supabase files and scripts to archive, cleanup legacy code
2025-05-05 18:04:32 +09:00
hansoo
5305c98970
Implement error handling and loading states for Appwrite integration
2025-05-05 15:41:19 +09:00
hansoo
f83bb384af
Migrate from Supabase to Appwrite with core functionality and UI components
2025-05-05 08:58:27 +09:00
hansoo
fdfdf15166
Supabase on-prem 설정 및 마이그레이션 작업
2025-05-05 07:17:35 +09:00
hansoo
2bfe52fb7b
Add JS migration script
2025-04-28 06:26:08 +09:00
hansoo
cdf2de5d9f
Add migration script for Cloud to On-Prem
2025-04-28 06:19:57 +09:00
hansoo
4f1705c3b7
Update version to 1.1.8 and fix version code to 9 in Android build files
2025-04-05 20:52:14 +09:00
hansoo
d1e45edcdb
버전 정보 업데이트
2025-04-05 15:52:14 +09:00
gpt-engineer-app[bot]
980d8533d8
Visual edit in Lovable
...
Edited UI in Lovable
2025-04-05 06:31:12 +00:00
gpt-engineer-app[bot]
888d45683f
Visual edit in Lovable
...
Edited UI in Lovable
2025-04-05 06:30:24 +00:00
gpt-engineer-app[bot]
0f2b29fe29
Refactor: Final build review and cleanup
2025-04-05 06:26:12 +00:00
gpt-engineer-app[bot]
5c7a24bc36
Fix: Resolve MONTHS_KR import error
...
Import MONTHS_KR from the correct file to resolve the "Cannot find name 'MONTHS_KR'" error in src/utils/dateUtils.ts.
2025-04-05 06:20:53 +00:00
gpt-engineer-app[bot]
1d3039c525
Fix: Import MONTHS_KR from dateUtils
...
The `MONTHS_KR` export was not being correctly imported in `useFilterApplication.ts` and `index.ts`. This commit fixes the import statements to correctly reference the `MONTHS_KR` export from `dateUtils.ts`.
2025-04-05 06:19:26 +00:00
gpt-engineer-app[bot]
4b7f422acd
Refactor: Codebase review and cleanup
...
Review the entire codebase for potential issues and perform necessary cleanup.
2025-04-05 06:16:43 +00:00
gpt-engineer-app[bot]
6a55d33a6d
Fix: Resolve 'useState' error in AuthProvider
...
The error "TypeError: Cannot read properties of null (reading 'useState')" indicates an issue with the `useState` hook within the `AuthProvider` component. This commit addresses the root cause of this error, ensuring the component functions correctly.
2025-04-05 06:05:51 +00:00
gpt-engineer-app[bot]
e947a84dcb
Fix: Display 0 for expenses
2025-04-05 06:02:31 +00:00
gpt-engineer-app[bot]
f8948e1221
Fix: Display correct expense amount in monthly budget
...
The monthly budget and spending were not displaying the correct expense amount after adding an expense. This commit fixes the issue.
2025-04-05 05:57:30 +00:00
gpt-engineer-app[bot]
03e9671ec6
Fix: Data reset not clearing transactions
...
Ensures that the data reset function correctly clears all transaction data from local storage.
2025-04-05 05:48:21 +00:00
gpt-engineer-app[bot]
d96a43ef44
Fix: Import calculatePercentage from formatters
...
The `calculatePercentage` function was not being imported correctly from the formatters module, causing a build error. This commit fixes the import statement to correctly import the function.
2025-04-05 05:43:05 +00:00
gpt-engineer-app[bot]
62551d58e3
feat: Implement budget edit functionality
...
When the "Edit Budget" button is clicked, display a popup similar to the expense input form for budget modification.
2025-04-05 05:41:15 +00:00
gpt-engineer-app[bot]
45df7c368a
Fix: Use correct safeStorage methods
...
The `safeStorage` object in `budgetUtils.ts` defines `get`, `set`, and `remove` methods, but the `budgetStorage.ts` file is using `getItem`, `setItem`, and `removeItem`. This commit updates `budgetStorage.ts` to use the correct methods from `safeStorage`.
2025-04-05 05:35:45 +00:00
gpt-engineer-app[bot]
a326981e5d
Refactor: Split Index.tsx into smaller components and hooks
...
Split the large Index.tsx file into smaller, more manageable components and custom hooks to improve code readability and maintainability. Ensure all functionality remains the same after refactoring.
2025-04-05 05:31:21 +00:00
gpt-engineer-app[bot]
c8f0855f6c
Refactor: Review and address code issues
2025-04-05 05:24:10 +00:00
gpt-engineer-app[bot]
a6524c17e6
Fix: Import BudgetData from types.ts
...
The BudgetData type was not being correctly imported from the BudgetContext. This commit updates the import statements in BudgetProgressCard.tsx and HomeContent.tsx to import BudgetData from types.ts, resolving the TypeScript errors.
2025-04-05 05:20:08 +00:00
gpt-engineer-app[bot]
02d24aca68
Fix: Resolve build error
...
The AI did not make any changes to the codebase, so the error must be elsewhere.
2025-04-05 05:16:51 +00:00
gpt-engineer-app[bot]
b7b55cc816
Fix: SafeArea for iOS dynamic island
...
Fixes iOS safe area issues caused by the dynamic island.
2025-04-05 05:08:29 +00:00
gpt-engineer-app[bot]
af51ba2d52
Fix: App crashing on launch
...
Investigate and resolve the issue causing the application to crash during startup.
2025-04-05 05:04:27 +00:00
hansoo
9f9c49c588
아이폰 앱 오류 수정
2025-03-24 00:11:30 +09:00
hansoo
40e97c1858
버전 표시 오류 수정7
2025-03-23 23:05:04 +09:00
hansoo
a964eeb60c
버전 표시 오류 수정5
2025-03-23 22:57:23 +09:00
hansoo
5720c9210f
버전 표시 오류 수정4
2025-03-23 22:55:33 +09:00
hansoo
9375d06aa2
버전 표시 오류 수정
2025-03-23 22:42:23 +09:00
hansoo
f5e3b39c73
fix: 웹앱 새로고침 후 버전 정보 유지 및 BuildInfoPlugin 오류 수정
2025-03-23 22:17:42 +09:00
hansoo
8279d4bb17
안드로이드 버전 정보 표시 문제 해결 (Lovable 변경사항 병합)
2025-03-23 21:39:27 +09:00
gpt-engineer-app[bot]
0aca18c276
Fix: Improve Android build version retrieval
...
Improve error handling and logging in BuildInfoPlugin.java. Enhance type conversion and error handling in getAppVersionInfo() in platform.ts to ensure correct version information display.
2025-03-23 12:07:39 +00:00
gpt-engineer-app[bot]
176acdd648
Modify add transaction button
...
The add transaction button was modified to always display "+ 지출 입력" on the right bottom side.
2025-03-23 12:02:59 +00:00
gpt-engineer-app[bot]
485ac4775c
Add bottom padding to page
...
Adds 80px of bottom padding to the page.
2025-03-23 11:05:05 +00:00
gpt-engineer-app[bot]
9968780732
Remove web platform support
...
The web platform is no longer needed, so remove related code.
2025-03-23 11:01:04 +00:00
gpt-engineer-app[bot]
1ce73d9354
Implement BuildInfo plugin for iOS
...
This commit implements the BuildInfo Capacitor plugin for iOS to retrieve the app version and build number from Info.plist. This resolves an issue where the version information was not being updated on iOS devices due to the absence of a native plugin implementation.
2025-03-23 10:56:42 +00:00
gpt-engineer-app[bot]
d2d0493ffd
Fix: Update version info on settings page
...
Investigates and resolves the issue where the app version and build number were not updating correctly on the settings page.
2025-03-23 10:49:21 +00:00
gpt-engineer-app[bot]
8168d4b645
Fix type error in HomeContent
...
The `getCategorySpending` function was not returning an array, causing a type error when used with the `some` method in the `HomeContent` component. This commit ensures that `getCategorySpending` returns an array as expected.
2025-03-23 10:26:51 +00:00
gpt-engineer-app[bot]
606ac2f96a
Reverted to edit edt-fb357fcb-7bf8-4196-adc5-e2dc2fed4b19: "Fix notch issue on iOS
...
Addresses the notch display issue on iOS devices."
2025-03-23 10:23:55 +00:00
gpt-engineer-app[bot]
d216daf2f4
Refactor code based on feedback
...
Refactor the code based on the provided feedback.
2025-03-23 10:22:23 +00:00
gpt-engineer-app[bot]
ce60f418fa
Fix notch issue on iOS
...
Addresses the notch display issue on iOS devices.
2025-03-23 10:15:20 +00:00
gpt-engineer-app[bot]
2c99bbce88
Reverted to edit edt-df6bf84a-482f-4f45-8871-2125b421fdb0: "Add bottom padding to screen
...
Adds 100px bottom padding to the screen."
2025-03-23 10:11:05 +00:00
gpt-engineer-app[bot]
8cf2e70050
Fix: Handle undefined budget data
...
The `useBudgetTabContent` hook was throwing an error when `data` prop was undefined. This commit adds a check to ensure that `data` is defined before accessing its properties.
2025-03-23 10:09:50 +00:00
gpt-engineer-app[bot]
abf8c6ae0c
Reverted to edit edt-8539f783-4c38-49ea-9c24-fdafcfaa7d4f: "Check iOS notch handling
...
Verify that the iOS notch handling feature is working correctly."
2025-03-23 10:08:01 +00:00
gpt-engineer-app[bot]
01e6f56f8a
Fix type errors in Index page
...
The BudgetTabContent and RecentTransactionsSection components in the Index page were receiving incorrect props, leading to TypeScript errors. This commit fixes these errors by passing the correct props to these components.
2025-03-23 08:59:17 +00:00