From eed923915f6f05bee591c50242f0590eaadaecbd Mon Sep 17 00:00:00 2001 From: Willian Mitsuda Date: Tue, 27 Sep 2022 19:20:20 -0300 Subject: [PATCH] Add force break to hexstring component in order to make it leak outside parent --- src/components/HexValue.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/HexValue.tsx b/src/components/HexValue.tsx index 88d6e0b..bef9038 100644 --- a/src/components/HexValue.tsx +++ b/src/components/HexValue.tsx @@ -5,7 +5,7 @@ type HexValueProps = { }; const HexValue: React.FC = ({ value }) => ( - {value} + {value} ); export default HexValue;