Skip to content

Commit

Permalink
fix: WalletConnect integration, part 4, renamed sdk files
Browse files Browse the repository at this point in the history
  • Loading branch information
dianasavvatina committed Dec 9, 2024
1 parent 9fa9e79 commit 8e1a929
Show file tree
Hide file tree
Showing 16 changed files with 6 additions and 6 deletions.
Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import {
} from "../../../testUtils";
import { SuccessStep } from "../SuccessStep";
import { type SdkSignPageProps, type SignHeaderProps } from "../utils";
import { SingleSignPage } from "./BeaconSignPage";
import { SingleSignPage } from "./SingleSignPage";

const message = {
id: "messageid",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import {
} from "../../../testUtils";
import { SuccessStep } from "../SuccessStep";
import { type SdkSignPageProps, type SignHeaderProps } from "../utils";
import { SingleSignPage } from "./BeaconSignPage";
import { SingleSignPage } from "./SingleSignPage";

jest.mock("@umami/core", () => ({
...jest.requireActual("@umami/core"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ import { MAINNET, mockImplicitAddress } from "@umami/tezos";
import { CustomError } from "@umami/utils";

import { useHandleBeaconMessage } from "./useHandleBeaconMessage";
import { BatchSignPage } from "../../components/SendFlow/Beacon/BatchSignPage";
import { SingleSignPage } from "../../components/SendFlow/Beacon/BeaconSignPage";
import { BatchSignPage } from "../../components/SendFlow/sdk/BatchSignPage";
import { SingleSignPage } from "../../components/SendFlow/sdk/SingleSignPage";
import { act, dynamicModalContextMock, renderHook, screen, waitFor } from "../../testUtils";
import { type SdkSignPageProps, type SignHeaderProps } from "../SendFlow/utils";

Expand Down
4 changes: 2 additions & 2 deletions apps/web/src/components/beacon/useHandleBeaconMessage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ import { CustomError } from "@umami/utils";

import { PermissionRequestModal } from "./PermissionRequestModal";
import { SignPayloadRequestModal } from "./SignPayloadRequestModal";
import { BatchSignPage } from "../../components/SendFlow/Beacon/BatchSignPage";
import { SingleSignPage } from "../../components/SendFlow/Beacon/BeaconSignPage";
import { BatchSignPage } from "../../components/SendFlow/sdk/BatchSignPage";
import { SingleSignPage } from "../../components/SendFlow/sdk/SingleSignPage";
import { type SdkSignPageProps, type SignHeaderProps } from "../SendFlow/utils";

/**
Expand Down

0 comments on commit 8e1a929

Please sign in to comment.