Skip to content

Commit

Permalink
chore(app): updates imports to correct locations
Browse files Browse the repository at this point in the history
  • Loading branch information
aminah-io committed May 22, 2023
1 parent e2a22f9 commit 9ea0053
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { render, screen, fireEvent } from "@testing-library/react";
import { RefreshMyStampsModalContentCard } from "../../components/RefreshMyStampsModalContentCard";
import { PlatformSpec, PROVIDER_ID } from "@gitcoin/passport-platforms/src/types";
import { PLATFORM_ID } from "@gitcoin/passport-types";
import { PlatformSpec } from "@gitcoin/passport-platforms/src/types";
import { PLATFORM_ID, PROVIDER_ID } from "@gitcoin/passport-types";
import { ValidatedProviderGroup } from "../../signer/utils";

beforeAll(() => {
Expand Down
2 changes: 1 addition & 1 deletion app/__tests__/components/RefreshMyStampsSelector.test.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { render, screen, fireEvent } from "@testing-library/react";
import { RefreshMyStampsSelector } from "../../components/RefreshMyStampsSelector";
import { PROVIDER_ID } from "@gitcoin/passport-platforms/src/types";
import { PROVIDER_ID } from "@gitcoin/passport-types";
import { ValidatedProviderGroup } from "../../signer/utils";

const mockSetSelectedProviders = jest.fn();
Expand Down
4 changes: 3 additions & 1 deletion app/components/SideBarContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ import React, { useEffect, useState } from "react";
// --- Chakra UI Elements
import { DrawerBody, DrawerHeader, DrawerContent, DrawerCloseButton, Spinner } from "@chakra-ui/react";

import { PlatformSpec, PlatformGroupSpec, PROVIDER_ID } from "@gitcoin/passport-platforms/dist/commonjs/types";
import { PlatformSpec, PlatformGroupSpec } from "@gitcoin/passport-platforms/dist/commonjs/types";

import { PROVIDER_ID } from "@gitcoin/passport-types";

import { StampSelector } from "./StampSelector";
import { PlatformDetails } from "./PlatformDetails";
Expand Down

0 comments on commit 9ea0053

Please sign in to comment.