From 08959f83bc9f6d5df93cb6c2d34b671bf419d05a Mon Sep 17 00:00:00 2001 From: Sebastian Date: Mon, 14 Mar 2022 15:20:32 -0300 Subject: take translator from transaltion context --- packages/taler-wallet-webextension/src/cta/TermsOfServiceSection.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'packages/taler-wallet-webextension/src/cta/TermsOfServiceSection.tsx') diff --git a/packages/taler-wallet-webextension/src/cta/TermsOfServiceSection.tsx b/packages/taler-wallet-webextension/src/cta/TermsOfServiceSection.tsx index 1244b7915..cafc43c6f 100644 --- a/packages/taler-wallet-webextension/src/cta/TermsOfServiceSection.tsx +++ b/packages/taler-wallet-webextension/src/cta/TermsOfServiceSection.tsx @@ -1,4 +1,3 @@ -import { i18n, Translate } from "@gnu-taler/taler-util"; import { Fragment, h, VNode } from "preact"; import { CheckboxOutlined } from "../components/CheckboxOutlined"; import { ExchangeXmlTos } from "../components/ExchangeToS"; @@ -10,6 +9,7 @@ import { WarningBox, WarningText, } from "../components/styled"; +import { useTranslationContext } from "../context/translation"; import { TermsState } from "../utils/index"; interface Props { @@ -26,6 +26,7 @@ export function TermsOfServiceSection({ onAccept, onReview, }: Props): VNode { + const { i18n } = useTranslationContext(); if (!reviewing) { if (!reviewed) { if (!onReview) { -- cgit v1.2.3