Skip to content

Commit

Permalink
Merge pull request #1391 from madfish-solutions/fix/donation-info-url
Browse files Browse the repository at this point in the history
Change "learn more" url for donation model
  • Loading branch information
Digberi authored Aug 13, 2024
2 parents 727b7a5 + e307e1a commit 3ba614a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/shared/modals/donation-modal/donation-modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ const modeClass = {
[ColorModes.Dark]: styles.dark
};

const learnMoreUrl = ' https://donate.mad.fish/';

export const DonationModal: FC = () => {
const { t } = useTranslation(['common']);
const { donationModalOpen, closeDonationModal } = useGlobalModalsState();
Expand Down Expand Up @@ -66,7 +68,7 @@ export const DonationModal: FC = () => {
<div className={styles.description}>Donate TEZ - support Ukrainians in their fight with Putin occupants</div>
<Button
external
href="https://donate.tezos.org.ua/"
href={learnMoreUrl}
theme="underlined"
className={styles.learnMore}
data-test-id="buttonLearnMore"
Expand Down

0 comments on commit 3ba614a

Please sign in to comment.