Skip to content

Commit ec23648

Browse files
author
Bryan Wills
committed
fix: escape apostrophe in banner text to resolve ESLint error
1 parent fd27456 commit ec23648

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/components/shared/UpdateBanner.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ export default function UpdateBanner() {
6060
>
6161
<div className="flex items-center space-x-4 px-6 py-4 bg-primary/95 backdrop-blur supports-[backdrop-filter]:bg-primary/90 border border-primary/20 rounded-lg shadow-lg">
6262
<Bell className="h-5 w-5 text-primary-foreground flex-shrink-0" />
63-
<p className="text-sm text-primary-foreground whitespace-nowrap">
64-
🚀&nbsp;We're building exciting products to bring convenience to your everyday tasks. Check back frequently for updates!
65-
</p>
63+
<p className="text-sm text-primary-foreground whitespace-nowrap">
64+
🚀&nbsp;We&apos;re building exciting products to bring convenience to your everyday tasks. Check back frequently for updates!
65+
</p>
6666
<Button
6767
variant="ghost"
6868
size="sm"

0 commit comments

Comments
 (0)