update src/components/Navbar/SearchResult/index.js and src/components/ProductStatusCard/index.js

temp
mahdi 2 years ago
parent 293f6ee3f0
commit 02aba3d5c7
  1. 2
      src/components/Navbar/SearchResult/index.js
  2. 4
      src/components/ProductStatusCard/index.js

@ -11,7 +11,7 @@ const Pages = [
{ {
strings: "ورود - ثبت نام - لاگین - login - Login", strings: "ورود - ثبت نام - لاگین - login - Login",
link: "/signup", link: "/signup",
name: `${window.t("ورود یا ثبت نام")}`, name: window.t("ورود یا ثبت نام"),
}, },
{ {
strings: strings:

@ -98,7 +98,7 @@ const ProductStatusCard = ({
</div> </div>
<Button <Button
title="${`window.t(اضافه کردن به سبد خرید)`}" title={window.t("اضافه کردن به سبد خرید")}
backgroundColor={isDark ? "bg-blueC0" : "bg-blueC0"} backgroundColor={isDark ? "bg-blueC0" : "bg-blueC0"}
border={{ color: isDark ? "#ffffff55" : "#196EC055", width: "0px" }} border={{ color: isDark ? "#ffffff55" : "#196EC055", width: "0px" }}
width="100%" width="100%"
@ -112,7 +112,7 @@ const ProductStatusCard = ({
userId: userId, userId: userId,
count: 1, count: 1,
}) })
: toast.info(`{window.t("ابتدا وارد حساب کاربری خود شوید.")}`) : toast.info(window.t("ابتدا وارد حساب کاربری خود شوید."))
} }
/> />
</div> </div>

Loading…
Cancel
Save