feat: removed console.logs

This commit is contained in:
2023-07-04 23:12:11 -03:00
parent 6971eeda3c
commit fe0cacf145
6 changed files with 9 additions and 23 deletions

View File

@@ -15,7 +15,6 @@ export const PieCircle = (props: { pieCircleData: PieCircleData }): JSX.Element
pieCircleData.sort(([[, a]], [[, b]]) => b - a).map(([, item]) => item),
pieCircleData.map(([, { backgroundColor }]) => backgroundColor),
];
console.log({ data, legendData });
return (
<PieCircleContainer>
<ChartContainer height={height}>

View File

@@ -11,7 +11,7 @@ const HeadIndex = (): JSX.Element => (
<>
<Head>
<title>{APP_NAME}</title>
<meta property="og:title" content={APP_NAME} key="title" />
<meta key="title" content={APP_NAME} property="og:title" />
</Head>
</>
);

View File

@@ -24,13 +24,16 @@ export const SpendScreen = (): JSX.Element => {
trpc.userList
.query()
.then((a) => {
// eslint-disable-next-line no-console
console.log(a);
})
.catch((e) => {
// eslint-disable-next-line no-console
console.log(e);
});
})
.catch((e) => {
// eslint-disable-next-line no-console
console.log(e);
});
}, []);