Add force break to hexstring component in order to make it leak outside parent

This commit is contained in:
Willian Mitsuda 2022-09-27 19:20:20 -03:00
parent ff7596382f
commit eed923915f
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ type HexValueProps = {
}; };
const HexValue: React.FC<HexValueProps> = ({ value }) => ( const HexValue: React.FC<HexValueProps> = ({ value }) => (
<span className="font-hash text-black">{value}</span> <span className="font-hash text-black break-all">{value}</span>
); );
export default HexValue; export default HexValue;