Skip to content

Commit

Permalink
remove uri
Browse files Browse the repository at this point in the history
  • Loading branch information
ethereumdegen committed Jul 10, 2023
1 parent 2db6f32 commit 847072e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/contracts/contracts/LenderManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ contract LenderManager is
}

function _baseURI() internal view override returns (string memory) {
return "data:image/svg+xml;charset=utf-8,";
return "";
}

struct LoanInformation {
Expand Down
2 changes: 1 addition & 1 deletion packages/contracts/tests/LenderManager_Test.sol
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ contract LenderManager_Test is Testable {

assertEq(
baseURI,
"data:image/svg+xml;charset=utf-8,",
"",
"Base URI is not correct"
);
}
Expand Down

0 comments on commit 847072e

Please sign in to comment.