add vat to tax calculations

This commit is contained in:
2025-11-17 00:28:44 +03:00
parent 8263be3ae3
commit c9a7cc1b0e
3 changed files with 27 additions and 10 deletions

View File

@@ -29,6 +29,7 @@ import MenuSkeleton from "./components/MenuSkeleton/MenuSkeleton";
import ScrollEventHandler from "./components/ScrollEventHandler";
import SearchButton from "./components/SearchButton";
import styles from "./menu.module.css";
import TimeIcon from "components/Icons/order/TimeIcon";
function MenuPage() {
const { subdomain } = useParams();
@@ -128,10 +129,8 @@ function MenuPage() {
</div>
<ProText className={styles.openingHours}>
{t("menu.openingHours", {
openingTime: restaurant?.openingTime,
closingTime: restaurant?.closingTime,
})}
<TimeIcon className={styles.timeIcon} />
{restaurant?.openingTime} - {restaurant?.closingTime}
</ProText>
</div>
</div>