Skip to content

Commit

Permalink
Refactor Listado component to remove console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
yoelmarain committed Oct 15, 2024
1 parent 05f50a8 commit 46396e7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,6 @@ export default function Listado() {
setFilter(event.target.value);
};

console.log(abonaron);
console.log(noAbonaron);

return (
<Flex w={"100%"}
justifyContent={"center"}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export default function Pagos() {
return (
<Flex w={"100%"} justifyContent={"center"} alignItems={"center"} flex={1}>
<Box w={"100%"} p={4}>
{loading === true ? <Spinner /> :
{loading === true ? <Flex justifyContent={"center"} w={"100%"}> <Spinner size="xl" /> </Flex> :
data && (
<>
<Box flexDirection={"row"} display={"flex"} justifyContent={"space-around"} w={"100%"} >
Expand Down

0 comments on commit 46396e7

Please sign in to comment.