Skip to content

Commit

Permalink
Add survey form link
Browse files Browse the repository at this point in the history
  • Loading branch information
0xSachinK committed Nov 15, 2023
1 parent 325e987 commit bbb2481
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion client/src/components/Swap/PlatformSelector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import { ThemedText } from '../../theme/text'
import { Overlay } from '@components/modals/Overlay';
import { useOnClickOutside } from '@hooks/useOnClickOutside';
import venmoLogo from '../../assets/images/venmo_logo.png';
import { ZKP2P_SURVEY_FORM_LINK } from "../../helpers/docUrls";


export const PlatformSelector: React.FC = () => {
Expand Down Expand Up @@ -54,7 +55,7 @@ export const PlatformSelector: React.FC = () => {

<InstructionsLabel>
We currently only support Venmo, but are expanding to other platforms. Please let us know which platforms
you are interested in seeing ZKP2P add support for. <Link href="https://docs.zkp2p.xyz/zkp2p/user-guides/on-ramping" target="_blank">
you are interested in seeing ZKP2P add support for. <Link href={ ZKP2P_SURVEY_FORM_LINK } target="_blank">
Give feedback ↗
</Link>
</InstructionsLabel>
Expand Down
4 changes: 2 additions & 2 deletions client/src/components/Swap/TokenSelector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { ThemedText } from '../../theme/text'
import { Overlay } from '@components/modals/Overlay';
import { useOnClickOutside } from '@hooks/useOnClickOutside';
import { SVGIconThemed } from '../SVGIcon/SVGIconThemed';

import { ZKP2P_SURVEY_FORM_LINK } from "@helpers/docUrls";

export const TokenSelector: React.FC = () => {
const [isOpen, toggleOpen] = useReducer((s) => !s, false)
Expand Down Expand Up @@ -57,7 +57,7 @@ export const TokenSelector: React.FC = () => {

<InstructionsLabel>
We currently only support USDC, but will be adding support for other tokens. Please let us know which tokens
you are interested in seeing ZKP2P add support for. <Link href="https://docs.zkp2p.xyz/zkp2p/user-guides/on-ramping" target="_blank">
you are interested in seeing ZKP2P add support for. <Link href={ ZKP2P_SURVEY_FORM_LINK } target="_blank">
Give feedback ↗
</Link>
</InstructionsLabel>
Expand Down

0 comments on commit bbb2481

Please sign in to comment.