Skip to content

Commit d7c0086

Browse files
author
Travis Vachon
authored
fix: don't render escaped <br/> (#100)
My fix for the linter's dissatisfaction resulted in an escaped `<br/>` tag - fix that
1 parent fcf3bbe commit d7c0086

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/plans/change/page.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ function DelegatePlanCreateAdminSessionForm ({ className = '', account }: { clas
184184
return (
185185
<form onSubmit={handleSubmit(onSubmit)} className={`flex flex-col space-y-2 ${className}`}>
186186
<label className='w-full'>
187-
<H2>{`Delegate access to ${DidMailto.toEmail(account.did())}'s<br />billing admin portal`}</H2>
187+
<H2>Delegate access to {DidMailto.toEmail(account.did())}&apos;s<br />billing admin portal</H2>
188188
<input className='text-black py-2 px-2 rounded block w-full border border-gray-800'
189189
placeholder='To Email' type='email'
190190
{...register('email')} />

0 commit comments

Comments
 (0)