Skip to content

Commit 34bc2fb

Browse files
author
Yash Agrawal
committed
feat: minor fix
1 parent 839973b commit 34bc2fb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

contracts/SBTToken.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ contract SBTToken is ISBTToken, ERC721EnumerableUpgradeable {
156156
sbtAttributes = attributeInString;
157157
} else {
158158
sbtAttributes = string(
159-
abi.encodePacked(sbtAttributes, ",", attributeInString)
159+
abi.encodePacked(sbtAttributes, ", ", attributeInString)
160160
);
161161
}
162162
}
@@ -186,7 +186,7 @@ contract SBTToken is ISBTToken, ERC721EnumerableUpgradeable {
186186
sbtAttributes = attributeInString;
187187
} else {
188188
sbtAttributes = string(
189-
abi.encodePacked(sbtAttributes, ",", attributeInString)
189+
abi.encodePacked(sbtAttributes, ", ", attributeInString)
190190
);
191191
}
192192
}

0 commit comments

Comments
 (0)