From e983785a622c7c908695d1475ae2c66bf7f90434 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Sat, 15 Mar 2025 02:37:41 +0000 Subject: [PATCH] Change search input placeholder MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change the placeholder text of the search input in Transactions.tsx from "거래 검색..." to "지출 검색...". --- src/pages/Transactions.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/pages/Transactions.tsx b/src/pages/Transactions.tsx index 6e8a4eb..e4b0cd7 100644 --- a/src/pages/Transactions.tsx +++ b/src/pages/Transactions.tsx @@ -1,4 +1,3 @@ - import React, { useState } from 'react'; import NavBar from '@/components/NavBar'; import TransactionCard, { Transaction } from '@/components/TransactionCard'; @@ -45,7 +44,7 @@ const Transactions = () => { category: 'food', type: 'expense' }]; - + // Filter only expense transactions const expenseTransactions = transactions.filter(t => t.type === 'expense'); @@ -74,7 +73,7 @@ const Transactions = () => { {/* Search */}