Skip to content

Commit 4c9957f

Browse files
committed
design: remove ₩ in state
1 parent 7252733 commit 4c9957f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/shopping/ShoppingBudget.jsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ function ShoppingBudget({ budget, present, hideButtons }) {
184184
<Text className={state >= 0 ? "stable" : "warning"}>
185185
{state >= 0 ? "안정" : "초과"}
186186
</Text>
187-
<Text className="money">{state}</Text>
187+
<Text className="money">{state}</Text>
188188
</ContentContainer>
189189
</Container>
190190
)}
@@ -212,7 +212,7 @@ function ShoppingBudget({ budget, present, hideButtons }) {
212212
<Text className={state >= 0 ? "stable" : "warning"}>
213213
{state >= 0 ? "안정" : "초과"}
214214
</Text>
215-
<Text className="money">{state}</Text>
215+
<Text className="money">{state}</Text>
216216
</ContentContainer>
217217
</Container>
218218
);

0 commit comments

Comments
 (0)