Skip to content

Commit f85e1ba

Browse files
Fix: Broken blog page
Fixes the broken /blog page by addressing potential routing or component rendering issues.
1 parent 07e866f commit f85e1ba

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

src/App.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ import NotFound from "./pages/NotFound";
1414

1515
const queryClient = new QueryClient();
1616

17+
console.log('App component initializing');
18+
1719
const App = () => (
1820
<QueryClientProvider client={queryClient}>
1921
<TooltipProvider>

src/pages/Blog.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,8 @@ const Blog = () => {
5555
}
5656
};
5757

58+
console.log('Blog component rendering');
59+
5860
return (
5961
<div className="min-h-screen bg-white">
6062
{/* Header */}

0 commit comments

Comments
 (0)