Skip to content

Commit

Permalink
fix: don't render escaped <br/>
Browse files Browse the repository at this point in the history
My fix for the linter's dissatisfaction resulted in an escaped <br/> tag - fix that
  • Loading branch information
travis committed May 21, 2024
1 parent fcf3bbe commit ad5bbf0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/plans/change/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ function DelegatePlanCreateAdminSessionForm ({ className = '', account }: { clas
return (
<form onSubmit={handleSubmit(onSubmit)} className={`flex flex-col space-y-2 ${className}`}>
<label className='w-full'>
<H2>{`Delegate access to ${DidMailto.toEmail(account.did())}'s<br />billing admin portal`}</H2>
<H2>Delegate access to {DidMailto.toEmail(account.did())}&apos;s<br />billing admin portal</H2>
<input className='text-black py-2 px-2 rounded block w-full border border-gray-800'
placeholder='To Email' type='email'
{...register('email')} />
Expand Down

0 comments on commit ad5bbf0

Please sign in to comment.