Bug Fixing

This commit is contained in:
ajat91.sudrajat 2022-02-03 15:39:06 +07:00
parent c0fdb7c232
commit c63c1b961d
2 changed files with 4 additions and 4 deletions

View File

@ -65,7 +65,7 @@ export const Profile = observer(() => {
store.transaction.getDataHistoryTransaction(),
]);
await store.transaction.getDataHistoryTopUpProfile(
store.authentication.profileData?.userDetail?.id
store.authentication.profileData?.id
);
modalLoader.setLoading(false);
})();

View File

@ -175,7 +175,7 @@ export const Transaction = observer(() => {
<Row>
<Col span={24}>
<Select
placeholder={"Select Category"}
placeholder={"Pilih Kategori"}
allowClear={true}
onChange={(val) => handleChangeTabs(val)}
style={{ marginBottom: "10px", width: "100%" }}
@ -191,13 +191,13 @@ export const Transaction = observer(() => {
<Row>
<span style={{ fontWeight: "bold", marginBottom: "10px" }}>
Sub Category
Sub Kategori
</span>
</Row>
<Row>
<Col span={24}>
<Select
placeholder={"Select Sub Category"}
placeholder={"Pilih Sub Kategori"}
allowClear={true}
onChange={(val) => handleChangeSubcategory(val)}
style={{ marginBottom: "10px", width: "100%" }}