diff --git a/static/scripts/rewards/render-transaction/render-ens-name.ts b/static/scripts/rewards/render-transaction/render-ens-name.ts index 810df96d..4a780bb6 100644 --- a/static/scripts/rewards/render-transaction/render-ens-name.ts +++ b/static/scripts/rewards/render-transaction/render-ens-name.ts @@ -36,6 +36,7 @@ export async function renderEnsName({ element, address, tokenAddress, tokenView, } else { href = `${app.currentExplorerUrl}/address/${address}"`; } + ensName?.length > 42 && ensName.slice(0, 39).concat("..."); element.innerHTML = `${ensName}`; } } catch (error) {