diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 081b401..75c163e 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,5 +1,5 @@ blank_issues_enabled: true contact_links: - name: Project Security Vulnerabilities - url: https://hey.new/ola - about: Please report security vulnerabilities privately here. \ No newline at end of file + url: https://hi.new/ola + about: Please report security vulnerabilities privately here. diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index ac891fa..38666f5 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -57,7 +57,7 @@ further defined and clarified by project maintainers. ## Enforcement Instances of abusive, harassing, or otherwise unacceptable behavior may be -reported by contacting the project team at [hey.new/ola](https://hey.new/ola). All +reported by contacting the project team at [hi.new/ola](https://hi.new/ola). All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. @@ -75,4 +75,4 @@ available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.ht [homepage]: https://www.contributor-covenant.org For answers to common questions about this code of conduct, see -https://www.contributor-covenant.org/faq \ No newline at end of file +https://www.contributor-covenant.org/faq diff --git a/README.md b/README.md index 716b545..af8c6f1 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,7 @@
@@ -34,7 +33,7 @@ To get set-up follow these steps: 1. Clone the repository: ```sh - git clone https://github.com/babblebey/jargons.dev.git + git clone https://github.com/devjargons/jargons.dev.git ``` 2. Navigate to the project directory: @@ -73,10 +72,10 @@ We welcome contributions to jargons.dev! There are two main ways you can contrib This includes adding new words to the dictionary or editing existing word entries. We highly recommend using our Jargons Editor at [jargons.dev/editor](https://jargons.dev/editor) for this purpose. This user-friendly interface streamlines your contribution allowing it end up as a pull request. 2. **Other Contributions:** - Theses are contributions other than adding or editing words in the dictionary, feel free to contribute in other ways such as code improvements, bug fixes, or feature enhancements. + These are contributions other than adding or editing words in the dictionary, feel free to contribute in other ways such as issue reporting/triaging, code/documentation improvements, bug fixes, or feature enhancements. To get started with contributing, please refer to our [Contribution Guide](./CONTRIBUTING.md). Thank you for contributing to the jargons.dev project! ## Support -Do leave the project a star ⭐️ \ No newline at end of file +Do leave the project a star ⭐️ diff --git a/dev/setup.js b/dev/setup.js index 230ffc7..66ade17 100644 --- a/dev/setup.js +++ b/dev/setup.js @@ -6,7 +6,7 @@ import registerGitHubApp from "./lib/register-github-app/index.js"; const appCredentials = await registerGitHubApp({ // name of your app name: "jargons.dev-app-for-", - url: "https://github.com/babblebey/jargons.dev/CONTRIBUTING.md", + url: "https://github.com/devjargons/jargons.dev/CONTRIBUTING.md", default_permissions: { issues: "write", } @@ -26,4 +26,4 @@ const envFileTemp = await fs.readFile(".env.example", "utf-8"); const newEnvFileContent = envFileTemp .replace(/^GITHUB_APP_ID=.*$/m, `GITHUB_APP_ID=${appCredentials.id}`) .replace(/^GITHUB_APP_PRIVATE_KEY=.*$/m, `GITHUB_APP_PRIVATE_KEY="${singleLinePrivateKey}"`) -await fs.writeFile(".env", newEnvFileContent); \ No newline at end of file +await fs.writeFile(".env", newEnvFileContent); diff --git a/src/components/islands/recent-searches.jsx b/src/components/islands/recent-searches.jsx index ca13890..fcb4006 100644 --- a/src/components/islands/recent-searches.jsx +++ b/src/components/islands/recent-searches.jsx @@ -5,7 +5,7 @@ import { $recentSearches } from "../../lib/stores/search.js"; /** * Recent Searches Component - An Island that displays a user's last 5 searches * - * @todo implement a default list instead of `null` (now browse-word link) when no `$recentSearch` is found + * @todo implement a default list instead of `null` when no `$recentSearch` is found * @todo implement loading component to avoid flickering UI */ export default function RecentSearches() { @@ -16,7 +16,7 @@ export default function RecentSearches() { }, []); return Object.values(recentSearches).length ? ( -