Skip to content

Commit e677330

Browse files
fix: address copilot review feedback
1 parent e251a50 commit e677330

3 files changed

Lines changed: 7 additions & 6 deletions

File tree

src/components/testimonials/TestimonialCard.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ interface TestimonialCardProps {
1212
date: string;
1313
avatar: string;
1414
gradient?: string;
15-
borderColor?: string;
1615
}
1716

1817
const TestimonialCard: React.FC<TestimonialCardProps> = ({
@@ -22,7 +21,6 @@ const TestimonialCard: React.FC<TestimonialCardProps> = ({
2221
date,
2322
avatar,
2423
gradient,
25-
borderColor,
2624
}) => {
2725
const { isDark } = useSafeColorMode();
2826

src/components/topmate/TopMateSection.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@ import React from "react";
22
import TopMateCard from "./TopMateCard";
33
import { useSafeColorMode } from "../../utils/useSafeColorMode";
44
import { motion } from "framer-motion";
5+
import type { Variants } from "framer-motion";
56

6-
const revealVariants = {
7+
const revealVariants: Variants = {
78
hidden: { opacity: 0, y: 16, filter: "blur(6px)" },
89
visible: (i: number) => ({
910
opacity: 1,
@@ -15,7 +16,7 @@ const revealVariants = {
1516
ease: [0.215, 0.61, 0.355, 1],
1617
},
1718
}),
18-
} as any;
19+
};
1920

2021
const TopMateSection = ({ setShowTopmate }) => {
2122
const { isDark } = useSafeColorMode();

src/database/blogs/index.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,8 @@ const blogs: Blog[] = [
221221
authors: ["Aditya-Singh-Rathore"],
222222
category: "data engineering",
223223
tags: ["Purview", "Data Catalog", "Onboarding", "Data Management", "Data Engineering"],
224-
224+
},
225+
{
225226
id: 19,
226227
title: "Why Data Engineers Make Better Business Analysts Than MBAs Do",
227228
image: "/img/blogs/ba_de_cover_image.png",
@@ -231,7 +232,8 @@ const blogs: Blog[] = [
231232
authors: ["Aditya-Singh-Rathore"],
232233
category: "data engineering",
233234
tags: ["Data Engineers", "Business Analysts", "MBAs", "Data Understanding", "Business Decisions"],
234-
235+
},
236+
{
235237
id: 20,
236238
title: "Google Changed Workspace Icon after 6 years",
237239
image: "/img/blogs/cover-google-icon.jpg",

0 commit comments

Comments
 (0)