- 부가서비스 헤더 로그 추가

This commit is contained in:
HyeonJongKim
2025-10-29 16:24:42 +09:00
parent 777521a960
commit 8c352e0c2c
61 changed files with 783 additions and 163 deletions

View File

@@ -172,9 +172,13 @@ export const ArsRequestPage = () => {
<div className="billing-field">
<NumericFormat
value={amount}
thousandSeparator={true}
allowNegative={false}
displayType="input"
onChange={(e: ChangeEvent<HTMLInputElement>) => setAmount(parseInt(e.target.value))}
onValueChange={(values) => {
const { floatValue } = values;
setAmount(floatValue ?? 0);
}}
></NumericFormat>
</div>
</div>