Skip to content

Commit

Permalink
remove extra logs
Browse files Browse the repository at this point in the history
  • Loading branch information
dekanbro committed Mar 26, 2024
1 parent be24dd5 commit 2703a0e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion libs/moloch-v3-data/src/members.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export const listMembers = async ({
throw formatFetchError({ type: 'INVALID_NETWORK_ERROR' });
}

console.log('filter', filter)
console.log('filter', filter);
const res = await graphFetchList<ListMembersQuery, ListMembersQueryVariables>(
ListMembersDocument,
url,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ export const MemberList = ({
allowMemberMenu = false,
}: MemberListProps) => {
const { dao, isLoading: isLoadingDao } = useDaoData();
console.log('dao', dao);

const {
members,
Expand All @@ -55,7 +54,7 @@ export const MemberList = ({
hasNextPage,
orderMembers,
} = useDaoMembers();
console.log('members', members);

const isMd = useBreakpoint(widthQuery.md);

const tableData = useMemo<MolochV3Members>(() => {
Expand Down

0 comments on commit 2703a0e

Please sign in to comment.