diff --git a/application/src/components/method-details/method-details.tsx b/application/src/components/method-details/method-details.tsx index 506f19e..601ad1a 100644 --- a/application/src/components/method-details/method-details.tsx +++ b/application/src/components/method-details/method-details.tsx @@ -117,7 +117,7 @@ const MethodDetails = (props: TMethodDetailsProps) => { {(formProps) => { return ( props.onClose()} formControls={ diff --git a/application/src/components/welcome/welcome.tsx b/application/src/components/welcome/welcome.tsx index e605c34..87dc444 100644 --- a/application/src/components/welcome/welcome.tsx +++ b/application/src/components/welcome/welcome.tsx @@ -67,12 +67,12 @@ const Welcome = () => { container: OBJECT_CONTAINER_NAME, }); const { extension } = useExtensionDestinationFetcher(EXTENSION_KEY); - const [viewLoading, setViewLoading] = useState(true); const [methods, setMethods] = useState([]); const [refresh, setRefresh] = useState(0); - const [noData, setNoData] = useState(false); - const fetchedData = usePaymentMethodsFetcher(extension?.destination?.url); + const { fetchedData, fetchedDataLoading } = usePaymentMethodsFetcher( + extension?.destination?.url + ); const handleRefresh = useCallback(() => { setRefresh((prev) => prev + 1); @@ -101,9 +101,6 @@ const Welcome = () => { }) ); setMethods(updatedMethods); - setViewLoading(false); - } else { - setNoData(true); } }, [customObjectUpdater, customObjectsPaginatedResult?.results, fetchedData]); @@ -114,7 +111,6 @@ const Welcome = () => { customObjectsPaginatedResult) || (refresh > 0 && extension?.destination?.url) ) { - setViewLoading(true); FetchAndUpdateMethods(); setRefresh(0); } @@ -134,8 +130,18 @@ const Welcome = () => { ); } + const NoDataFallback = !fetchedDataLoading ? ( + + ) : ( + + ); + const MollieDataTable = - !loading && methods && methods.length > 0 ? ( + !loading && methods && methods.length > 0 && fetchedData ? ( > isCondensed @@ -199,11 +205,7 @@ const Welcome = () => { ) : ( - + NoDataFallback ); return ( @@ -218,14 +220,7 @@ const Welcome = () => { /> - {viewLoading && !noData ? ( - - ) : ( - MollieDataTable - )} + {MollieDataTable} ); };