diff --git a/apps/customer_dashboard/customer_dashboard.env.example b/apps/customer_dashboard/customer_dashboard.env.example index e4ea9cab9..b4842ad9a 100644 --- a/apps/customer_dashboard/customer_dashboard.env.example +++ b/apps/customer_dashboard/customer_dashboard.env.example @@ -3,3 +3,5 @@ SERVER_PORT=3203 NEXT_PUBLIC_OKO_API_ENDPOINT=http://localhost:4200 NEXT_PUBLIC_OKO_DEMO_ENDPOINT=https://demo.oko.app NEXT_PUBLIC_OKO_DOCS_ENDPOINT=https://docs.oko.app +NEXT_PUBLIC_OKO_FEATURE_REQUEST_ENDPOINT=https://oko-wallet.canny.io/feature-requests +NEXT_PUBLIC_OKO_GET_SUPPORT_ENDPOINT=https://oko-wallet.canny.io/integration-support-inquiries diff --git a/apps/customer_dashboard/global.d.ts b/apps/customer_dashboard/global.d.ts index 829e1bee3..7fd47789d 100644 --- a/apps/customer_dashboard/global.d.ts +++ b/apps/customer_dashboard/global.d.ts @@ -13,6 +13,8 @@ declare global { NEXT_PUBLIC_OKO_API_ENDPOINT: string; NEXT_PUBLIC_OKO_DOCS_ENDPOINT: string; NEXT_PUBLIC_OKO_DEMO_ENDPOINT: string; + NEXT_PUBLIC_OKO_FEATURE_REQUEST_ENDPOINT: string; + NEXT_PUBLIC_OKO_GET_SUPPORT_ENDPOINT: string; } } } diff --git a/apps/customer_dashboard/src/components/left_bar/left_bar.tsx b/apps/customer_dashboard/src/components/left_bar/left_bar.tsx index fdce9bf0c..f1f2c8061 100644 --- a/apps/customer_dashboard/src/components/left_bar/left_bar.tsx +++ b/apps/customer_dashboard/src/components/left_bar/left_bar.tsx @@ -2,13 +2,11 @@ import { MenuItem } from "@oko-wallet/oko-common-ui/menu"; import { HomeOutlinedIcon } from "@oko-wallet/oko-common-ui/icons/home_outlined"; -import { Typography } from "@oko-wallet/oko-common-ui/typography"; import { paths } from "@oko-wallet-ct-dashboard/paths"; import styles from "./left_bar.module.scss"; import { AccountInfoWithSubMenu } from "../account_info_with_sub_menu/account_info_with_sub_menu"; import { ExternalLinkItem } from "../external_link_item/external_link_item"; -import { InfoModal } from "../info_modal/info_modal"; export const LeftBar = () => { return ( @@ -28,19 +26,15 @@ export const LeftBar = () => {
- ( - - )} - /> + + Feature Request + - + Get Support
diff --git a/apps/customer_dashboard/src/envs.ts b/apps/customer_dashboard/src/envs.ts index c5ee8487a..69509629d 100644 --- a/apps/customer_dashboard/src/envs.ts +++ b/apps/customer_dashboard/src/envs.ts @@ -8,4 +8,6 @@ export const envSchema = z.object({ NEXT_PUBLIC_OKO_API_ENDPOINT: z.string(), NEXT_PUBLIC_OKO_DEMO_ENDPOINT: z.string(), NEXT_PUBLIC_OKO_DOCS_ENDPOINT: z.string(), + NEXT_PUBLIC_OKO_FEATURE_REQUEST_ENDPOINT: z.string(), + NEXT_PUBLIC_OKO_GET_SUPPORT_ENDPOINT: z.string(), });