diff --git a/app/my/createProfile/page.jsx b/app/my/createProfile/page.jsx
index 6375842..5ce72f2 100644
--- a/app/my/createProfile/page.jsx
+++ b/app/my/createProfile/page.jsx
@@ -84,7 +84,6 @@ const ListItemWithCheckbox = ({
¥
{
const newFormData = { ...formData };
@@ -399,7 +398,6 @@ export default function CreateProfile() {
@@ -434,7 +432,6 @@ export default function CreateProfile() {
diff --git a/app/my/editprofile/editHome/page.jsx b/app/my/editprofile/editHome/page.jsx
index 58bda05..df3ba11 100644
--- a/app/my/editprofile/editHome/page.jsx
+++ b/app/my/editprofile/editHome/page.jsx
@@ -624,7 +624,6 @@ export default function EditHome() {
setFormData((old) => ({ ...old, wechatPrice: value }))
diff --git a/app/my/streamerVerification/completeStreamerInformation/page.jsx b/app/my/streamerVerification/completeStreamerInformation/page.jsx
index 53aeb51..684660b 100644
--- a/app/my/streamerVerification/completeStreamerInformation/page.jsx
+++ b/app/my/streamerVerification/completeStreamerInformation/page.jsx
@@ -913,7 +913,6 @@ export default function CompleteStreamerInformation() {
setFormData((old) => ({ ...old, wechatPrice: value }))
diff --git a/app/space/setting/spacePaymentSetting/page.jsx b/app/space/setting/spacePaymentSetting/page.jsx
index 239e7a2..89d1bbd 100644
--- a/app/space/setting/spacePaymentSetting/page.jsx
+++ b/app/space/setting/spacePaymentSetting/page.jsx
@@ -442,7 +442,6 @@ export default function spacePaymentSetting() {
@@ -482,7 +481,6 @@ export default function spacePaymentSetting() {
diff --git a/components/OwnInput/index.js b/components/OwnInput/index.js
index 5b0cc20..4369e49 100644
--- a/components/OwnInput/index.js
+++ b/components/OwnInput/index.js
@@ -14,7 +14,6 @@ export default function OwnInput({
disabled = false,
className,
inputClassName = "",
- fontSize = 16,
id,
}) {
return (
@@ -29,7 +28,7 @@ export default function OwnInput({
onChange={(e) => onChange(e.target?.value)}
value={value}
className={`w-full placeholder:text-[#FFFFFF80] ${inputClassName}`}
- style={{ fontSize: `${fontSize}px!important` }}
+ style={{ fontSize: `16px!important` }}
/>
{clearable && value != "" && (