Skip to content

Commit

Permalink
fix: relative imports
Browse files Browse the repository at this point in the history
  • Loading branch information
kopy-kat committed Jul 1, 2024
1 parent 45ccd05 commit d961421
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Safe7579Launchpad.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion src/core/SupportViewer.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit d961421

Please sign in to comment.