Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix login error #1

Merged
merged 1 commit into from
Jan 5, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/Common/Navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ function Navbar() {
<div className="absolute left-[50%] top-0 -z-10 h-6 w-6 translate-x-[80%] translate-y-[-40%] rotate-45 select-none rounded bg-richblack-5"></div>
{loading ? (
<p className="text-center">Loading...</p>
) : 3 ? (
) : subLinks.length ? (
<>
{subLinks
?.filter(
Expand Down
2 changes: 1 addition & 1 deletion src/services/apis.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const BASE_URL = process.env.REACT_APP_BASE_URL
const BASE_URL = "http://localhost:4000/api/v1"

// AUTH ENDPOINTS
export const endpoints = {
Expand Down