Removing unwanted horizontal line in expense Details popup and remove unwanted console.log.
This commit is contained in:
parent
e4585d6c43
commit
4d40b8e149
@ -7,7 +7,6 @@ import Loader, { SpinnerLoader } from "../common/Loader";
|
|||||||
const AdvancePaymentList = ({ employeeId }) => {
|
const AdvancePaymentList = ({ employeeId }) => {
|
||||||
const { data, isError, isLoading, error, isFetching } =
|
const { data, isError, isLoading, error, isFetching } =
|
||||||
useExpenseTransactions(employeeId, { enabled: !!employeeId });
|
useExpenseTransactions(employeeId, { enabled: !!employeeId });
|
||||||
console.log(data)
|
|
||||||
// Handle no employee selected
|
// Handle no employee selected
|
||||||
if (!employeeId) {
|
if (!employeeId) {
|
||||||
return (
|
return (
|
||||||
@ -104,7 +103,6 @@ const AdvancePaymentList = ({ employeeId }) => {
|
|||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
console.log("Kartik", rowsWithBalance)
|
|
||||||
return (
|
return (
|
||||||
<div className="table-responsive">
|
<div className="table-responsive">
|
||||||
<table className="table align-middle">
|
<table className="table align-middle">
|
||||||
|
|||||||
@ -386,7 +386,7 @@ const ViewExpense = ({ ExpenseId }) => {
|
|||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
<hr className="divider my-1 border-2 divider-primary my-2" />
|
{/* <hr className="divider my-1 border-2 divider-primary my-2" /> */}
|
||||||
|
|
||||||
{Array.isArray(data?.nextStatus) && data.nextStatus.length > 0 && (
|
{Array.isArray(data?.nextStatus) && data.nextStatus.length > 0 && (
|
||||||
<>
|
<>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user