Merge branch 'feature/bug-fixes' into develop
This commit is contained in:
commit
6520b0be19
|
@ -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">
|
||||
|
|
|
@ -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"
|
||||
}`}
|
||||
|
|
Loading…
Reference in New Issue