Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: use url constants #315

Merged
merged 1 commit into from
Jan 10, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading