Skip to content

Commit

Permalink
Merge pull request #37 from Somnath-Chattaraj/updt
Browse files Browse the repository at this point in the history
update .gitignore
  • Loading branch information
Somnath-Chattaraj authored Aug 1, 2024
2 parents 540aa5b + c175385 commit e76276e
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.DS_Store
node_modules
.env
package-lock.json
1 change: 1 addition & 0 deletions backend/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ node_modules
# Keep environment variables out of version control
.env
.DS_Store
package-lock.json
1 change: 1 addition & 0 deletions frontend/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ node_modules
dist
dist-ssr
*.local
package-lock.json

# Editor directories and files
.vscode/*
Expand Down
4 changes: 0 additions & 4 deletions frontend/src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ import { BrowserRouter, Routes, Route } from "react-router-dom";
import { LiveblocksProvider, RoomProvider } from "@liveblocks/react";
import PostBox from "./components/Posts";
import Room from "./components/Room";
import ProfilePage from './components/ProfilePage';
import ChatRoom from './components/ChatRoom';

function App() {
return (
Expand All @@ -22,8 +20,6 @@ function App() {
</RoomProvider>
}
/>
<Route path="/profile/:userId" component={ProfilePage} />
<Route path="/chat/:roomId" component={ChatRoom} />
</Routes>
</BrowserRouter>
</LiveblocksProvider>
Expand Down

0 comments on commit e76276e

Please sign in to comment.