Enhance budget input UI
- Improve the '+' icon for budget modification. - Display the sum of category budgets instead of an input field for the total budget. - Change the wallet icon in budget input.
This commit is contained in:
@@ -24,7 +24,7 @@ const BudgetCategoriesSection: React.FC<BudgetCategoriesSectionProps> = ({
|
||||
const actualPercentage = category.total > 0
|
||||
? Math.round((category.current / category.total) * 100)
|
||||
: 0;
|
||||
// 프로그레스 바용 퍼센트 (100%로 제한하지 않음)
|
||||
// 프로그레스 바용 퍼센트 - 제한 없이 실제 퍼센트 표시
|
||||
const displayPercentage = actualPercentage;
|
||||
|
||||
// 예산이 얼마 남지 않은 경우 (10% 미만)
|
||||
|
||||
Reference in New Issue
Block a user