Skip to content

Commit

Permalink
PR changes
Browse files Browse the repository at this point in the history
  • Loading branch information
klhftco committed Mar 13, 2024
1 parent 4a2bc09 commit fd48146
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 10 deletions.
13 changes: 4 additions & 9 deletions frontend/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ const router = createBrowserRouter([
element: <About />,
path: "/about",
},
{
element: <Releases />,
path: "/releases",
},
],
},
{
Expand All @@ -53,15 +57,6 @@ const router = createBrowserRouter([
},
],
},
{
element: <Layout />,
children: [
{
element: <Releases />,
path: "/releases",
},
],
},
]);

export default function App() {
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/app/Releases/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import log from "./log.json"
const Releases = () => {

const releases = log.releases;
console.log(releases)
// console.log(releases)

return (
<div className={styles.root}>
Expand Down

0 comments on commit fd48146

Please sign in to comment.