Skip to content

Commit

Permalink
Removing word for the week
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewwilson committed Sep 14, 2024
1 parent 1523e61 commit 40d5207
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
3 changes: 0 additions & 3 deletions src/components/header/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,6 @@ class Header extends React.Component {
<li className="nav-item">
<NavLink to="/giving" className="nav-link" activeClassName="active" onClick={this.navLinkClick}>Giving</NavLink>
</li>
<li className="nav-item">
<NavLink to="/word-for-the-way" className="nav-link" activeClassName="active" onClick={this.navLinkClick}>Word for the way</NavLink>
</li>
</ul>
</div>
</nav>
Expand Down
2 changes: 0 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import MembersPage from './components/members/MembersPage'
import Auth from './components/auth/Auth'
import Callback from './components/auth/Callback'
import GivingPage from './components/giving/GivingPage'
import WordForTheWeekPage from './components/word-for-the-week/WordForTheWeekPage'

const auth = new Auth();

Expand Down Expand Up @@ -44,7 +43,6 @@ const Index = () => (
<Route path="/sermon/:sermonId/:title" component={SermonPage}/>
<Route path="/contact" component={ContactPage}/>
<Route path="/giving" component={GivingPage}/>
<Route path="/word-for-the-way" component={WordForTheWeekPage}/>
<Route path="/members" render={(props) => privateRoute(auth, <MembersPage {...props}/>, props)}/>
<Route path="/consent" component={() => {
window.location.href = 'https://forms.gle/Uu21ADNG8Ddznm7DA';
Expand Down

0 comments on commit 40d5207

Please sign in to comment.