summaryrefslogtreecommitdiff
path: root/src/containers/ProductForm.tsx
diff options
context:
space:
mode:
authoreug-vs <eug-vs@keemail.me>2021-03-21 12:45:35 +0300
committereug-vs <eug-vs@keemail.me>2021-03-21 12:45:35 +0300
commit7f523b8ebaaf913191ac76e279174e2464dcef0e (patch)
tree5f56ab3d1beb01a7e040caa963ee9587cf1b7980 /src/containers/ProductForm.tsx
parent786dc90d89dbb2deaef0282301d88b1568d56a33 (diff)
downloadcommercel-ui-7f523b8ebaaf913191ac76e279174e2464dcef0e.tar.gz
feat: remove $ label from price
Diffstat (limited to 'src/containers/ProductForm.tsx')
-rw-r--r--src/containers/ProductForm.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/containers/ProductForm.tsx b/src/containers/ProductForm.tsx
index 060fbbb..6957916 100644
--- a/src/containers/ProductForm.tsx
+++ b/src/containers/ProductForm.tsx
@@ -7,7 +7,7 @@ const ProductForm: React.FC = () => {
return (
<Form id="form">
<Input name="name" label="Название" />
- <Input name="price" type="number" label="Цена ($)" />
+ <Input name="price" type="number" label="Цена" />
</Form>
);
};