Skip to content

Commit

Permalink
fix: Change jump in default to download
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinszuchet committed Oct 18, 2024
1 parent 8a75278 commit 57f98b4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/UserMenu/UserMenu.i18n.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export const i18n = {
account: 'Account Settings',
activity: 'Activity',
guest: 'Guest',
jumpIn: 'Jump In',
download: 'Download',
marketplaceAuthorizations: 'Marketplace Authorizations',
myAssets: 'My Assets',
myLists: 'My Lists',
Expand Down
2 changes: 1 addition & 1 deletion src/components/UserMenu/UserMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ export const UserMenu = React.memo((props: UserMenuProps) => {
as={'a'}
href={config.get('DOWNLOAD_URL')}
>
{i18n.jumpIn}
{i18n.download}
</Button>
</>
)}
Expand Down
2 changes: 1 addition & 1 deletion src/components/UserMenu/UserMenu.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export type UserMenuI18N = Record<
| 'signOut'
| 'guest'
| 'marketplaceAuthorizations'
| 'jumpIn',
| 'download',
string
>

Expand Down

0 comments on commit 57f98b4

Please sign in to comment.