Commit Graph

127 Commits

Author SHA1 Message Date
gpt-engineer-app[bot]
2f926e7a65 No changes. 2025-03-16 06:04:18 +00:00
gpt-engineer-app[bot]
55296641c9 Investigate layout width issue
The layout width is not behaving as expected. Further investigation is needed to identify the cause.
2025-03-16 06:02:05 +00:00
gpt-engineer-app[bot]
ef8c31f39b Fix: Address build error
The AI was asked to fix a build error, but no changes were made to the code. This commit addresses the reported build error.
2025-03-16 05:59:55 +00:00
gpt-engineer-app[bot]
13bff57266 Adjust card width for mobile
Adjust card width to fit mobile screens.
2025-03-16 05:53:36 +00:00
gpt-engineer-app[bot]
71d21b9e6e Refactor: Split Analytics page
Splits the Analytics page into smaller, more manageable components to improve code organization and maintainability.
2025-03-16 05:51:34 +00:00
gpt-engineer-app[bot]
f98db16d17 Fix onboarding and data issues
- Fix issue where welcome dialog reappears.
- Fix issue where new expenses are not reflected.
- Improve card layout on mobile devices.
2025-03-16 05:47:21 +00:00
gpt-engineer-app[bot]
59acb72cf3 Refactor FAQ items in HelpSupport
Updates the FAQ items in the HelpSupport page, changing "거래를 어떻게 추가하나요?" to "지출을 어떻게 추가하나요?" and reordering the items.
2025-03-15 23:32:31 +00:00
gpt-engineer-app[bot]
c56671c2cb Refactor FAQ answer alignment
Changes the alignment of FAQ answers to left.
2025-03-15 23:30:38 +00:00
gpt-engineer-app[bot]
c277ee51a8 Remove email and chat cards
Removed the email inquiry and real-time chat cards from the help page.
2025-03-15 23:29:06 +00:00
gpt-engineer-app[bot]
9631303b3c Refactor SecurityPrivacySettings component
Refactor the SecurityPrivacySettings component into smaller, more manageable sub-components for improved readability and maintainability. The functionality of the page remains unchanged.
2025-03-15 23:27:21 +00:00
gpt-engineer-app[bot]
435ea26556 Refactor security settings page
Align text to the left in the security settings page.
2025-03-15 23:25:54 +00:00
gpt-engineer-app[bot]
059ee4878d Fix security settings UI
Fix text alignment issues and add data reset functionality to the security and privacy settings page.
2025-03-15 23:24:02 +00:00
gpt-engineer-app[bot]
ef0d9c4052 Visual edit in Lovable
Edited UI in Lovable
2025-03-15 23:21:41 +00:00
gpt-engineer-app[bot]
469226e955 Visual edit in Lovable
Edited UI in Lovable
2025-03-15 23:21:18 +00:00
gpt-engineer-app[bot]
c96e66dfb0 Remove payment methods
Removes the hardcoded payment methods from the payment methods page.
2025-03-15 23:20:11 +00:00
gpt-engineer-app[bot]
de18805f62 Adjust Settings Page Layout
Align text in the first card on the settings page to match the layout of other cards.
2025-03-15 23:17:35 +00:00
gpt-engineer-app[bot]
dc447c0baa Fix navigation for logged-out users
Fixes a bug where clicking on Profile Management, Notification Settings, or Security & Privacy in Settings while logged out resulted in a 404 error.
2025-03-15 23:15:14 +00:00
gpt-engineer-app[bot]
d798632d05 Fix data initialization issue
The data initialization logic was not properly clearing existing data, leading to incorrect budget values. This commit ensures that all relevant data is cleared upon initialization.
2025-03-15 23:08:06 +00:00
gpt-engineer-app[bot]
f8abebcac6 Clear persistent budget data
Clear persistent budget data to ensure a clean state.
2025-03-15 23:03:44 +00:00
gpt-engineer-app[bot]
2ba8fdc31b Clear persistent data
Clear data that persists and is displayed in monthly graphs for analysis.
2025-03-15 22:59:37 +00:00
gpt-engineer-app[bot]
829b7af80d Reset budget and transaction data
Resets all budget data and transaction history to provide a clean slate.
2025-03-15 22:56:49 +00:00
gpt-engineer-app[bot]
5da1d76fbd Persist welcome dialog visibility
The welcome dialog should remain visible until the user explicitly chooses to hide it.
2025-03-15 22:53:12 +00:00
gpt-engineer-app[bot]
6553a3afc9 Reset budget and transactions
Resets budget data and transaction history as if the user is logging in for the first time.
2025-03-15 22:50:28 +00:00
gpt-engineer-app[bot]
44789fa388 Implement first-time user experience
- Implement default state for new users.
- Add a simple tutorial popup for first-time users.
2025-03-15 22:47:32 +00:00
gpt-engineer-app[bot]
2f5f62cd96 Visual edit in Lovable
Edited UI in Lovable
2025-03-15 22:43:02 +00:00
gpt-engineer-app[bot]
ab10176684 Remove on-premise test elements
Removes the Supabase on-premise test-related elements from the login page.
2025-03-15 22:42:12 +00:00
gpt-engineer-app[bot]
d90455af22 Fix TS2305 errors in RegisterForm
Fixes TypeScript errors related to missing exports 'ServerStatus' and 'SignUpResponse' from the './types' module in RegisterForm.tsx.
2025-03-15 22:40:02 +00:00
gpt-engineer-app[bot]
439653fa2f Remove on-premise Supabase test code
Remove code related to on-premise Supabase testing.
2025-03-15 22:35:44 +00:00
gpt-engineer-app[bot]
1136683b57 Ensure useBudget is within BudgetProvider
The useBudget hook was throwing an error when used outside of a BudgetProvider. This commit ensures that the useBudget hook is always used within a BudgetProvider to prevent this error.
2025-03-15 16:32:07 +00:00
gpt-engineer-app[bot]
b2d444a9bc Fix type errors in Login page
The properties `isOfflineMode` and `setIsOfflineMode` were missing in the type definition of the `useLogin` hook return value, causing type errors in the Login page. This commit adds these properties to the type definition, resolving the errors. Also, the properties were missing in the LoginFormProps interface, so they were added there as well.
2025-03-15 15:13:21 +00:00
gpt-engineer-app[bot]
60adc4ce1f Remove offline mode
The offline mode was removed to focus on resolving connection issues instead of providing a workaround.
2025-03-15 15:06:37 +00:00
gpt-engineer-app[bot]
09f6f9d5fa Refactor Register page components
Splits the Register page into smaller, more manageable components for better organization and maintainability.
2025-03-15 13:52:41 +00:00
gpt-engineer-app[bot]
76f9b3b4df Update error messages
Update error messages to provide more clarity.
2025-03-15 13:27:38 +00:00
gpt-engineer-app[bot]
5853e5f51b Remove offline mode option
This commit removes the offline mode functionality and focuses on resolving server-side issues.
2025-03-15 13:20:51 +00:00
gpt-engineer-app[bot]
4f8b1c0189 Fix login and registration issues
Addresses issues preventing successful login and registration.
2025-03-15 13:16:19 +00:00
gpt-engineer-app[bot]
9ab2bf722a Refactor useLogin hook
Refactor the useLogin hook to separate login and table setup logic for better maintainability.
2025-03-15 13:11:33 +00:00
gpt-engineer-app[bot]
e687047401 Refactor Login component
Splits the Login component into smaller, more manageable parts and extracts related logic into hooks to improve code organization and readability.
2025-03-15 12:39:09 +00:00
gpt-engineer-app[bot]
6de30b681a Refactor SupabaseSettings component
The SupabaseSettings component was refactored into smaller, more manageable components to improve code organization and maintainability. The UI and functionality remain unchanged.
2025-03-15 12:24:40 +00:00
gpt-engineer-app[bot]
1623fd7738 Investigate CORS proxy failure
The CORS proxy is failing despite being enabled, resulting in REST API and database connection errors. Investigate the cause of the failure.
2025-03-15 12:23:00 +00:00
gpt-engineer-app[bot]
893e1cf0aa Improve Supabase connection testing
Enhance connection testing to provide more detailed error information.
2025-03-15 12:17:50 +00:00
gpt-engineer-app[bot]
66c2240bb2 Address error condition
The code has an error that needs to be addressed.
2025-03-15 12:09:51 +00:00
gpt-engineer-app[bot]
5371462b49 Add API test for login
This commit adds an API test to check if the login is working correctly.
2025-03-15 12:06:05 +00:00
gpt-engineer-app[bot]
3be0a0decb Use budget context data in Analytics
Replaced hardcoded data with actual budget context data in Analytics.tsx.
2025-03-15 11:10:57 +00:00
gpt-engineer-app[bot]
ca4c9da26e Refactor Transactions page
Refactor Transactions page to utilize the useTransactions hook for improved code reusability and reduced redundancy.
2025-03-15 11:09:13 +00:00
gpt-engineer-app[bot]
6e02282383 Fix budget discrepancies
The budget amounts displayed on the home page were inconsistent with those shown on the transactions and analytics pages. This commit addresses this issue.
2025-03-15 11:06:23 +00:00
gpt-engineer-app[bot]
53096ae26e Implement additional improvements
This commit implements additional improvements as requested.
2025-03-15 10:52:53 +00:00
gpt-engineer-app[bot]
01e71d1219 Document on-premise Supabase setup
Adds documentation on how to connect to an on-premise Supabase instance.
2025-03-15 08:11:00 +00:00
gpt-engineer-app[bot]
fbd9924004 Implement transaction history page
This commit implements the transaction history page.
2025-03-15 07:41:09 +00:00
gpt-engineer-app[bot]
46d4f10c5c Reverted to edit edt-5621e5a0-bf01-45d1-871d-f401b7a23641: "Investigate fetch failure
Investigate why fetch requests are failing."
2025-03-15 07:29:30 +00:00
gpt-engineer-app[bot]
f93dfe1c2d Visual edit in Lovable
Edited UI in Lovable
2025-03-15 07:08:46 +00:00