Skip to content

Commit

Permalink
refactor(project): edit feedback link (#1587)
Browse files Browse the repository at this point in the history
  • Loading branch information
hyrious committed Jun 24, 2022
1 parent a83b77b commit 4e372a2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,10 @@ export const MainPageLayoutContainer = observer<MainPageLayoutContainerProps>(
key: "feedback",
icon: (): React.ReactNode => <SVGFeedback />,
title: t("feedback"),
route: "https://github.com/netless-io/flat/issues",
route:
process.env.FLAT_REGION === "CN"
? "https://www.yuque.com/leooel/ec1kmm/vmsolg"
: "https://join.slack.com/t/agoraflat/shared_invite/zt-vdb09pf6-mD4hB7sDA4LXN2O5dhmEPQ",
},
{
key: "logout",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,10 @@ export const MainPageLayoutHorizontalContainer = observer<MainPageLayoutHorizont
key: "feedback",
icon: (): React.ReactNode => <SVGFeedback />,
title: t("feedback"),
route: "https://github.com/netless-io/flat/issues",
route:
process.env.FLAT_REGION === "CN"
? "https://www.yuque.com/leooel/ec1kmm/vmsolg"
: "https://join.slack.com/t/agoraflat/shared_invite/zt-vdb09pf6-mD4hB7sDA4LXN2O5dhmEPQ",
},
{
key: "logout",
Expand Down

0 comments on commit 4e372a2

Please sign in to comment.