- Merge client update into test-beta

Signed-off-by: Dave Richer <dave@imexsystems.ca>
This commit is contained in:
Dave Richer
2024-01-18 19:20:08 -05:00
696 changed files with 92291 additions and 107075 deletions

View File

@@ -1,12 +1,12 @@
import React from "react";
import { Result } from "antd";
import { useTranslation } from "react-i18next";
import {Result} from "antd";
import {useTranslation} from "react-i18next";
export default function NoShop() {
const { t } = useTranslation();
return (
<div>
<Result status="403" title={t("general.messages.noshop")} />
</div>
);
const {t} = useTranslation();
return (
<div>
<Result status="403" title={t("general.messages.noshop")}/>
</div>
);
}