Skip to content

Commit

Permalink
[Issue #2578] Update opp link for spelling (#2585)
Browse files Browse the repository at this point in the history
## Summary
Fixes #2578

### Time to review: __1 mins__

## Changes proposed
Fix spelling error.

## Context for reviewers
I'm bad at spelling.
  • Loading branch information
acouch authored Oct 25, 2024
1 parent be2f800 commit 9fbd511
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/i18n/messages/en/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export const messages = {
version: "Version",
},
link: {
title: "Link to additonal information",
title: "Link to additional information",
},
status_widget: {
archived: "Archived: ",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import OpportunityLink from "src/components/opportunity/OpportunityLink";
jest.mock("next-intl", () => ({
useTranslations: jest.fn().mockReturnValue((key: string) => {
const translations: { [key: string]: string } = {
title: "Link to additonal information",
title: "Link to additional information",
};
return translations[key] || key;
}),
Expand Down

0 comments on commit 9fbd511

Please sign in to comment.