Skip to content

Commit

Permalink
fix broken prop
Browse files Browse the repository at this point in the history
  • Loading branch information
ujaandas committed Nov 15, 2024
1 parent bb848ed commit c59ca64
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions src/app/blog/[slug]/page.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import Post from "@/components/mdx/mdx-post";
import { getAllPosts, getPostBySlug, MdxFile } from "@/lib/fetch-mdx";
import { getAllPosts, getPostBySlug } from "@/lib/fetch-mdx";

interface BlogPostProps {
post: MdxFile | null;
params: {
slug: string;
};
Expand Down
4 changes: 2 additions & 2 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,14 +91,14 @@ const experiences = [
"Developed a Python-based Github scraper, collected Java abstract syntax trees, and enhanced assertion generation precision by 33%.",
},
{
duration: "Apr. 2024 Sep. 2024",
duration: "Apr. 2024 - Sep. 2024",
company: "Stellerus Technology",
position: "Software Engineering Intern",
description:
"Developed backend services for real-time geospatial data, optimized geometry calculations, and designed a Redis-based distributed caching system.",
},
{
duration: "Oct. 2022 Jul. 2023",
duration: "Oct. 2022 - Jul. 2023",
company: "HKUST, HCI Initiative Lab",
position: "Full-Stack Research Assistant",
description:
Expand Down

0 comments on commit c59ca64

Please sign in to comment.