Skip to content

Commit 9980f21

Browse files
fixed
1 parent c3c8b40 commit 9980f21

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

website3.0/components/Footer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ function Footer() {
1414
const isProfile = pathname && pathname.startsWith("/profile"); // Check if path starts with '/admin'
1515
const isDevopsForum = pathname && pathname.startsWith("/devopsforum");
1616
const isCreateForum = pathname && pathname.startsWith("/createforum");
17-
const isPremium = pathname && pathname.startsWith("/plans");
17+
const isPremium = pathname && pathname.startsWith("/infrawise");
1818

1919
let { theme } = useContext(Context);
2020
return (

website3.0/components/Header.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const Header = () => {
2727
const isProfile = pathname && pathname.startsWith("/profile"); // Check if path starts with '/profile'
2828
const isCreateBlog = pathname && pathname.startsWith("/createblog"); // Check if path starts with '/createblog'
2929
const isDevopsForum = pathname && pathname.startsWith("/devopsforum");
30-
const isPremium = pathname && pathname.startsWith("/plans");
30+
const isPremium = pathname && pathname.startsWith("/infrawise");
3131

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

0 commit comments

Comments
 (0)