Merge branch 'feature/bug-fixes' into develop

This commit is contained in:
Willian Mitsuda 2021-07-12 19:04:43 -03:00
commit 6520b0be19
2 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,6 @@ const ConnectionErrorPanel: React.FC<ConnectionErrorPanelProps> = ({
connStatus,
config,
}) => {
console.log("PRINT");
return (
<div className="h-screen flex flex-col bg-gray-300 font-sans">
<div className="m-auto h-60 text-gray-700 text-lg min-w-lg max-w-lg">

View File

@ -14,6 +14,7 @@ const HexValue: React.FC<HexValueProps> = ({ value }) => {
<>
{shards.map((s, i) => (
<span
key={i}
className={`font-hash ${
i % 2 === 0 ? "text-black" : "text-gray-400"
}`}