Skip to content

Commit 8b3806e

Browse files
committed
fix: updated unescaped entities
1 parent 91ad613 commit 8b3806e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

components/auth/signin.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ const SignIn = ({ onClose }: { onClose: () => void }) => {
6060

6161
<div className="pt-8">
6262
<p className="text-xs text-neutral-400 leading-relaxed max-w-[280px]">
63-
By signing in, you agree to Pulse's <span className="underline cursor-pointer hover:text-neutral-600">Terms of Service</span> and <span className="underline cursor-pointer hover:text-neutral-600">Privacy Policy</span>.
63+
By signing in, you agree to Pulse&apos;s <span className="underline cursor-pointer hover:text-neutral-600">Terms of Service</span> and <span className="underline cursor-pointer hover:text-neutral-600">Privacy Policy</span>.
6464
</p>
6565
</div>
6666
</div>

components/homepage/testimonials.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ const Testimonials = () => {
5555
className="bg-white flex flex-col items-start justify-between border border-neutral-100 shadow-[0_8px_30px_rgb(0,0,0,0.04)] p-8 rounded-md h-[16rem] w-full"
5656
>
5757
<p className="text-neutral-700 leading-relaxed text-[0.95rem]">
58-
"{testimonial.quote}"
58+
&quot;{testimonial.quote}&quot;
5959
</p>
6060

6161
<div className="flex items-center space-x-4 mt-6">

0 commit comments

Comments
 (0)