Skip to content

Commit

Permalink
refactor: use url constants
Browse files Browse the repository at this point in the history
Signed-off-by: Adam Setch <[email protected]>
  • Loading branch information
setchy committed Jan 10, 2025
1 parent 2a60c94 commit 24cd38d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/solid/FaqAccordion.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
AccordionItem,
AccordionTrigger,
} from '~/components/ui/Accordion';
import { siteMetadata } from '~/constants';
import { URLs, siteMetadata } from '~/constants';

const content = [
{
Expand Down Expand Up @@ -35,7 +35,7 @@ const content = [
{
id: '5',
question: 'How can I contribute to Gitify?',
answer: `You can contribute to Gitify by opening an issue or pull request on GitHub at [${siteMetadata.repo.fullName}](https://github.com/${siteMetadata.repo.fullName}).\n\nCheck out our [open issues](https://github.com/${siteMetadata.repo.fullName}/issues) and see if there is any existing ideas that you would like to work on.`,
answer: `You can contribute to Gitify by opening an issue or pull request on GitHub at [${siteMetadata.repo.fullName}](${URLs.GITHUB.REPO}).\n\nCheck out our [open issues](${URLs.GITHUB.ISSUES}) and see if there is any existing ideas that you would like to work on.`,
},
];

Expand Down

0 comments on commit 24cd38d

Please sign in to comment.