Skip to content

Commit

Permalink
remove doxxing info/wallet
Browse files Browse the repository at this point in the history
  • Loading branch information
codenamejason committed May 2, 2024
1 parent 4341195 commit 4a11817
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 16 deletions.
7 changes: 0 additions & 7 deletions packages/grant-explorer/src/features/common/ProjectCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,6 @@ export function ProjectCard(props: {
} = props;

const posthog = usePostHog();

useEffect(() => {
posthog.identify("user-wallet", {
walletAddress: "0x1234567890",
});
});

const roundId = application.roundId.toLowerCase();

return (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ import { CollectionDetails } from "../collections/CollectionDetails";
import { FilterDropdown, FilterDropdownOption } from "../common/FilterDropdown";
import { getEnabledChains } from "../../app/chainConfig";
import { useIpfsCollection } from "../collections/hooks/useCollections";
import { usePostHog } from "posthog-js/react";

const FILTER_OPTIONS: FilterDropdownOption<Filter>[] = [
{
Expand Down Expand Up @@ -120,8 +119,6 @@ export function ExploreProjectsPage(): JSX.Element {
isPreloading || preloadingError ? null : applicationsFetchOptions
);

const posthog = usePostHog();

const isLoading = isPreloading || applicationsLoading;
const error = preloadingError || applicationsError;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,6 @@ export function PaginatedProjectsList({
}: PaginatedProjectsListProps): JSX.Element {
const posthog = usePostHog();

useEffect(() => {
posthog.identify("user-wallet", {
walletAddress: "0x1234567890",
});
});

return (
<>
{applications.map((application) => (
Expand Down

0 comments on commit 4a11817

Please sign in to comment.