Commit 3dbcee1c authored by smartcontracts's avatar smartcontracts Committed by GitHub

fix: incorrect import in ManageDrippie.s.sol (#11898)

Fixes an incorrect import inside of ManageDrippie.s.sol. Seems to
work just fine when forge install is executed but not otherwise.
parent 0e294749
......@@ -4,7 +4,7 @@ pragma solidity ^0.8.0;
import { console2 as console } from "forge-std/console2.sol";
import { Script } from "forge-std/Script.sol";
import { LibString } from "solady/src/utils/LibString.sol";
import { LibString } from "@solady/utils/LibString.sol";
import { IAutomate as IGelato } from "gelato/interfaces/IAutomate.sol";
import { LibDataTypes as GelatoDataTypes } from "gelato/libraries/LibDataTypes.sol";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment