diff --git a/scripts/package.json b/scripts/package.json index c310afa..2d239b7 100644 --- a/scripts/package.json +++ b/scripts/package.json @@ -1,7 +1,7 @@ { "name": "scripts", "version": "1.0.0", - "repository": "https://github.com/ekzhang/setwithfriends", + "repository": "https://github.com/eltoder/setwithfriends", "license": "MIT", "description": "Internal scripts for Set with Friends.", "main": "src/index.ts", diff --git a/src/components/DonateDialog.js b/src/components/DonateDialog.js index 0745bbd..70c1b0a 100644 --- a/src/components/DonateDialog.js +++ b/src/components/DonateDialog.js @@ -57,7 +57,7 @@ function DonateDialog({ active }) { starring the project on GitHub diff --git a/src/components/Navbar.js b/src/components/Navbar.js index 6486df1..7df7b45 100644 --- a/src/components/Navbar.js +++ b/src/components/Navbar.js @@ -143,7 +143,7 @@ function Navbar({ Release Notes diff --git a/src/pages/AboutPage.js b/src/pages/AboutPage.js index 59f5b4a..bbea5f9 100644 --- a/src/pages/AboutPage.js +++ b/src/pages/AboutPage.js @@ -22,33 +22,27 @@ function AboutPage() { The code powering this site is completely open source and available on{" "} - GitHub. + GitHub. We are happy to provide mentorship for contributors from all backgrounds, whether you're a seasoned programmer or just want to learn more about web development. This site would not be possible without many people's help: the{" "} - + volunteer developers {" "} - who contribute code to add features and fix bugs, the{" "} - patrons who - help keep the site running, and many others who reported bugs and - provided feedback. + who contributed code to add features and fix bugs and many others who + reported bugs and provided feedback. If you have suggestions, the best way to reach us is by{" "} - + filing an issue . - {" "} - For questions about payment, please email us at{" "} - ekzhang1@gmail.com and{" "} - cynthiakedu@gmail.com - . + diff --git a/src/pages/LobbyPage.js b/src/pages/LobbyPage.js index 29a8d62..8cc8447 100644 --- a/src/pages/LobbyPage.js +++ b/src/pages/LobbyPage.js @@ -281,7 +281,14 @@ function LobbyPage() { Help •{" "} About •{" "} - Conduct •{" "} + + GitHub + {" "} + • Conduct •{" "} Legal •{" "} Discord diff --git a/src/util.js b/src/util.js index a513fff..0b82bad 100644 --- a/src/util.js +++ b/src/util.js @@ -35,7 +35,7 @@ const fixedDataset = englishDataset .addWhitelistedTerm("dickens") ) .addPhrase((phrase) => - phrase.setMetadata({ originalWord: "fuck" }).addWhitelistedTerm("fickle") + phrase.setMetadata({ originalWord: "fuck" }).addWhitelistedTerm("fick") ); export const badWords = new RegExpMatcher({ ...fixedDataset.build(), diff --git a/src/util.test.js b/src/util.test.js index 9147536..376663f 100644 --- a/src/util.test.js +++ b/src/util.test.js @@ -85,6 +85,7 @@ describe("bad words filter", () => { expect(badWords.hasMatch("retard")).toBe(true); expect(badWords.hasMatch("ducks")).toBe(false); expect(badWords.hasMatch("deck")).toBe(false); + expect(badWords.hasMatch("fick")).toBe(false); expect(badWords.hasMatch("fickle")).toBe(false); }); });