File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -24,7 +24,11 @@ import type { TShortcutKey } from "@shared/types/keyboard-shortcut.types";
2424import { handleChangeIsLocalPasswordOpen } from "@/context/redux/local-password/local-password-slice" ;
2525import ExternalLink from "@/components/ux/ExternalLink" ;
2626import { Link } from "react-router-dom" ;
27- import { FAKE_API_BASE_URL , WEBSITE_BASE_URL } from "@shared/constant/api-bolt" ;
27+ import {
28+ FAKE_API_DOCS_URL ,
29+ MARKETPLACE_URL ,
30+ WEBSITE_BASE_URL ,
31+ } from "@shared/constant/api-bolt" ;
2832
2933const SettingButton = ( ) => {
3034 const dispatch = useAppDispatch ( ) ;
@@ -91,7 +95,13 @@ const SettingButton = () => {
9195 {
9296 id : "navigate_fake_api" ,
9397 label : "Explore Fake APIs" ,
94- link : FAKE_API_BASE_URL ,
98+ link : FAKE_API_DOCS_URL ,
99+ isExternalLink : true ,
100+ } ,
101+ {
102+ id : "navigate_theme_market_website" ,
103+ label : "Explore Theme market" ,
104+ link : MARKETPLACE_URL ,
95105 isExternalLink : true ,
96106 } ,
97107 ] ;
@@ -134,7 +144,7 @@ const SettingButton = () => {
134144 < >
135145 { isSeparatorAbove && < MenubarSeparator /> }
136146 < MenubarItem onClick = { onClick } className = "cursor-pointer" >
137- < p className = "line-clamp-1" > { label } </ p >
147+ < p className = "line-clamp-1 capitalize " > { label } </ p >
138148 { shortcutString && (
139149 < MenubarShortcut > { shortcutString } </ MenubarShortcut >
140150 ) }
Original file line number Diff line number Diff line change @@ -3,4 +3,5 @@ export const APP_VERSION = "1.0.0";
33
44export const WEBSITE_BASE_URL = "https://apibolt.vercel.app" ;
55export const SERVER_API_BASE_URL = "https://apibolt.vercel.app/api/v1/client" ;
6- export const FAKE_API_BASE_URL = "https://apibolt.vercel.app/fake" ;
6+ export const FAKE_API_DOCS_URL = "https://apibolt.vercel.app/fake" ;
7+ export const MARKETPLACE_URL = "https://apibolt.vercel.app/marketplace" ;
You can’t perform that action at this time.
0 commit comments