Skip to content

Commit

Permalink
Fix: Add eslint-disable comment to CTA section 2
Browse files Browse the repository at this point in the history
The code changes in this commit add an eslint-disable comment to the CTA section 2 component. This is done to suppress the react/no-unescaped-entities warning. The comment ensures that the component can contain unescaped entities without triggering the warning.

Refactor the code to include the comment and improve code quality.
  • Loading branch information
Vyshnav001 committed Nov 9, 2024
1 parent 466e18a commit f089a11
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/components/common/cta-section-2.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable react/no-unescaped-entities */
import { Users, Mic2, Guitar, Calendar, MapPin } from "lucide-react";
import { Button } from "@/components/ui/button";
import { Card, CardContent } from "@/components/ui/card";
Expand Down

0 comments on commit f089a11

Please sign in to comment.