Skip to content

Commit

Permalink
fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
Ayushmaanagarwal1211 committed Jan 13, 2025
1 parent c3c8b40 commit 9980f21
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion website3.0/components/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function Footer() {
const isProfile = pathname && pathname.startsWith("/profile"); // Check if path starts with '/admin'
const isDevopsForum = pathname && pathname.startsWith("/devopsforum");
const isCreateForum = pathname && pathname.startsWith("/createforum");
const isPremium = pathname && pathname.startsWith("/plans");
const isPremium = pathname && pathname.startsWith("/infrawise");

let { theme } = useContext(Context);
return (
Expand Down
2 changes: 1 addition & 1 deletion website3.0/components/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const Header = () => {
const isProfile = pathname && pathname.startsWith("/profile"); // Check if path starts with '/profile'
const isCreateBlog = pathname && pathname.startsWith("/createblog"); // Check if path starts with '/createblog'
const isDevopsForum = pathname && pathname.startsWith("/devopsforum");
const isPremium = pathname && pathname.startsWith("/plans");
const isPremium = pathname && pathname.startsWith("/infrawise");

const isCreateForum = pathname && pathname.startsWith("/createforum");
let { theme, isAdminShow, isLogin, setIsPopup, setMsg, setSearchedBlog } =
Expand Down

0 comments on commit 9980f21

Please sign in to comment.