Skip to content

Commit

Permalink
fix: remove console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
ClementNumericite committed Oct 25, 2023
1 parent 4e5f251 commit 9ec873a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions webapp-next/components/layouts/FiltersShortcut.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,6 @@ export function FiltersShortcut() {
);
};

console.log(Object.keys(filters));

return (
<Flex py={4} alignItems="center" flexWrap={'wrap'}>
{(Object.keys(filters) as Array<keyof Filters>)
Expand Down
1 change: 0 additions & 1 deletion webapp-next/utils/elastic-client.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { Client } from '@elastic/elasticsearch';

const host: string = process.env.ELASTIC_HOST || '';
console.log(host);

const connector = (): Client => {
return new Client({
Expand Down

0 comments on commit 9ec873a

Please sign in to comment.