Skip to content

Commit 8f4f5de

Browse files
Remove BASE_PATH constant from BlogCard component
1 parent 18b1eb2 commit 8f4f5de

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

components/blog-card.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@ interface BlogCardProps {
1616
post: BlogPost
1717
}
1818

19-
const BASE_PATH = process.env.NODE_ENV === "production" ? "/StableViewpoints" : ""
20-
2119
export default function BlogCard({ post }: BlogCardProps) {
2220
return (
2321
<Link href={`/a/${post.slug}`} className="group h-full">

0 commit comments

Comments
 (0)