fixed some build bug issues
This commit was merged in pull request #850.
This commit is contained in:
@@ -105,7 +105,7 @@ const RelativePopout = ({
|
||||
const isChecked = relativeSettings?.data?.filter(value => value?.family_uid == item?.family_uid)
|
||||
const image = localStorage.getItem("session_token") ? `${familyList?.imageServer}${localStorage.getItem("session_token")}/family/${item?.family_uid}` : "";
|
||||
return (
|
||||
<div key={item.family_uid || index} className="flex items-center border-b dark:border-[#5356fb29] hover:bg-gray-50">
|
||||
<div key={item.family_uid} className="flex items-center border-b dark:border-[#5356fb29] hover:bg-gray-50">
|
||||
<div className='p-2 flex justify-center items-center'>
|
||||
{relativeEditKids.loading && relativeEditKids.family_uid == item.family_uid?
|
||||
<LoadingSpinner size='4' color='bg-sky-500' />
|
||||
@@ -122,7 +122,7 @@ const RelativePopout = ({
|
||||
<div className="flex space-x-2 items-center w-full">
|
||||
<div className="min-w-[30px] min-h-[30px] max-w-[30px] max-h-[30px] rounded-full overflow-hidden flex justify-center items-center">
|
||||
<img
|
||||
src={image || localImgLoad(`images/icons/${banner}`)}
|
||||
src={image || localImgLoad(`images/icons/family.svg`)}
|
||||
alt={`Avatar`}
|
||||
className="w-full h-full"
|
||||
/>
|
||||
|
||||
@@ -18,7 +18,7 @@ export default function FamilyTableNew() {
|
||||
const { jobListTable, pendingListTable, parentFamilyTaskList } = useSelector((state) => state.tableReload); // TABLE RELOAD TRIGGERS
|
||||
|
||||
|
||||
let { pathname } = useLocation();
|
||||
let location = useLocation();
|
||||
|
||||
const queryParams = new URLSearchParams(location?.search);
|
||||
const preSelectedTab = queryParams.get("tab");
|
||||
|
||||
@@ -91,7 +91,7 @@ function Wallet({wallet, familyData, setFamilyWalletReload}) {
|
||||
action == 'ADD_VIRTUAL_CARD' ?
|
||||
openVirtualPopUp({wallet})
|
||||
:
|
||||
null
|
||||
()=>{}
|
||||
}}
|
||||
className={`w-[150px] h-[48px] rounded-full text-base text-white bg-[#4687ba] hover:bg-[#009ef7]`}
|
||||
>
|
||||
|
||||
Reference in New Issue
Block a user