Skip to content

Commit

Permalink
added highlighted documents so sidepane and the ability to select spe…
Browse files Browse the repository at this point in the history
…cific files
  • Loading branch information
okk0 committed Feb 28, 2025
1 parent fdf3784 commit d6b3826
Show file tree
Hide file tree
Showing 5 changed files with 753 additions and 24 deletions.
10 changes: 2 additions & 8 deletions src/components/BidNavbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,11 @@ const BidNavbar: React.FC<{
if (auth && auth.email) {
const permission = contributors[auth.email] || "viewer";
setCurrentUserPermission(permission);
console.log("currentUserpermissionnav", permission);
//console.log("currentUserpermissionnav", permission);
}
}, [location, bidInfo, auth]);

useEffect(() => {
if (auth) {
console.log("auth", auth);
}
}, [auth]);


const getPermissionDetails = (permission) => {
switch (permission) {
Expand Down Expand Up @@ -110,8 +106,6 @@ const BidNavbar: React.FC<{
}, 300); // 300ms matches our CSS transition time
};

console.log(initialBidName);

const baseNavLinkStyles =
"mr-6 text-base font-semibold text-gray-hint_text hover:text-orange px-3 py-2.5 cursor-pointer transition-all duration-300 ease-in-out relative";
const activeNavLinkStyles =
Expand Down
Loading

0 comments on commit d6b3826

Please sign in to comment.