diff --git a/src/Safe7579Launchpad.sol b/src/Safe7579Launchpad.sol index 4efbfa3..f0215d9 100644 --- a/src/Safe7579Launchpad.sol +++ b/src/Safe7579Launchpad.sol @@ -24,7 +24,7 @@ import { MODULE_TYPE_VALIDATOR } from "erc7579/interfaces/IERC7579Module.sol"; import { CheckSignatures } from "@rhinestone/checknsignatures/src/CheckNSignatures.sol"; import { LibSort } from "solady/utils/LibSort.sol"; import { SupportViewer } from "./core/SupportViewer.sol"; -import { IERC7579AccountEvents } from "src/interfaces/IERC7579Account.sol"; +import { IERC7579AccountEvents } from "./interfaces/IERC7579Account.sol"; /** * Launchpad to deploy a Safe account and connect the Safe7579 adapter. diff --git a/src/core/SupportViewer.sol b/src/core/SupportViewer.sol index 7143343..ad11733 100644 --- a/src/core/SupportViewer.sol +++ b/src/core/SupportViewer.sol @@ -17,7 +17,7 @@ import { MODULE_TYPE_EXECUTOR, MODULE_TYPE_FALLBACK } from "erc7579/interfaces/IERC7579Module.sol"; -import { IERC7579AccountView } from "src/interfaces/IERC7579Account.sol"; +import { IERC7579AccountView } from "../interfaces/IERC7579Account.sol"; abstract contract SupportViewer is IERC7579AccountView { function accountId() external pure returns (string memory accountImplementationId) {