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 { data, isError, isLoading, error, isFetching } =
|
||||
useExpenseTransactions(employeeId, { enabled: !!employeeId });
|
||||
console.log(data)
|
||||
// Handle no employee selected
|
||||
if (!employeeId) {
|
||||
return (
|
||||
@ -104,7 +103,6 @@ const AdvancePaymentList = ({ employeeId }) => {
|
||||
</div>
|
||||
);
|
||||
}
|
||||
console.log("Kartik", rowsWithBalance)
|
||||
return (
|
||||
<div className="table-responsive">
|
||||
<table className="table align-middle">
|
||||
|
||||
@ -386,7 +386,7 @@ const ViewExpense = ({ ExpenseId }) => {
|
||||
)}
|
||||
</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 && (
|
||||
<>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user