break when key is too long (#972)

This commit is contained in:
Daniel Chew 2023-07-24 15:27:51 +09:00 committed by GitHub
parent 8c342c2ae0
commit 59d8742da3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ const CopyPubkey: React.FC<{
}> = ({ pubkey }) => {
return (
<div
className="-ml-1 inline-flex cursor-pointer items-center px-1 hover:bg-dark hover:text-white active:bg-darkGray3"
className="-ml-1 inline-flex cursor-pointer items-center px-1 hover:bg-dark hover:text-white active:bg-darkGray3 break-all"
onClick={() => {
copy(pubkey)
}}