diff --git a/app/component/EditField.js b/app/component/EditField.js
index 212bc6f..83c34d2 100644
--- a/app/component/EditField.js
+++ b/app/component/EditField.js
@@ -21,7 +21,7 @@ function EditField({
disabled={!data?.isEdit}
placeholder={placeholder || ""}
type="text"
- className={`!w-full res-field-account ${
+ className={`!w-full res-field-account dark:!bg-transparent ${
isTransparent ? "!bg-transparent lg:!bg-[#FFF]" : "!bg-[#FFF]"
}`}
onChange={(e) => {
diff --git a/app/component/element/AutoCompleteSelect.js b/app/component/element/AutoCompleteSelect.js
index 6a357fe..5dba6e0 100644
--- a/app/component/element/AutoCompleteSelect.js
+++ b/app/component/element/AutoCompleteSelect.js
@@ -1,5 +1,5 @@
import BottomSelect from "@/components/icons/BottomSelect";
-import { Autocomplete, TextField } from "@mui/material";
+import { Autocomplete, Button, TextField } from "@mui/material";
import { styleTextSelectRight } from "@/mui";
function AutoCompleteSelect({ list, isError, updateData, name, label }) {
@@ -38,6 +38,18 @@ function AutoCompleteSelect({ list, isError, updateData, name, label }) {
border: isError ? "1px solid red !important" : "",
},
}}
+ renderOption={(props, option) => {
+ return (
+
+ );
+ }}
renderInput={(params) => (
diff --git a/components/icons/ArrowLeftPU.js b/components/icons/ArrowLeftPU.js
index 348d567..2a0b9d5 100644
--- a/components/icons/ArrowLeftPU.js
+++ b/components/icons/ArrowLeftPU.js
@@ -10,6 +10,7 @@ function ArrowLeftPU() {
-
+
{data.name}
-
+
{data.expertise}
diff --git a/components/panel/ContentText.js b/components/panel/ContentText.js
index 5d91a48..42e3c02 100644
--- a/components/panel/ContentText.js
+++ b/components/panel/ContentText.js
@@ -1,7 +1,9 @@
function ContentText({ children, text }) {
return (
-
{text}
+
+ {text}
+
{children}
);
diff --git a/components/panel/userAccount/Head.js b/components/panel/userAccount/Head.js
index 06b3a4e..3c82023 100644
--- a/components/panel/userAccount/Head.js
+++ b/components/panel/userAccount/Head.js
@@ -10,7 +10,7 @@ function Head() {