-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 🛠️ Updated People to use new events API * Updated evetHelper to send presenter request in kebab casing * Updated getPresenterEvents to use the new API * Removed console log * 🔒 Updated readme to include instructions about populating environment files using Keeper record * 🔒 Added new website API secret to .env.template * Removed unused date filter prop * - 🎨 broke hyphenate method for presenter names off into a separate helper function - ✅ Updated event APIs to use new WEBSITE_API GitHub secret * Updated home page to use correct endpoint for fetching all upcoming events * Fixed upcoming speaker filter not rendering due to missing environment variable * removed PAST_EVENTS_API environment variable --------- Co-authored-by: Calinator444 <caleb.williams5247@gmail.com>
- Loading branch information
1 parent
920b02a
commit 4eee52f
Showing
5 changed files
with
41 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export const hyphenate = (name) => { | ||
return name.toLowerCase().replace(' ', '-'); | ||
}; |