aboutsummaryrefslogtreecommitdiff
path: root/packages/merchant-backoffice-ui/src/Routing.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/merchant-backoffice-ui/src/Routing.tsx')
-rw-r--r--packages/merchant-backoffice-ui/src/Routing.tsx6
1 files changed, 0 insertions, 6 deletions
diff --git a/packages/merchant-backoffice-ui/src/Routing.tsx b/packages/merchant-backoffice-ui/src/Routing.tsx
index 8ccd559b9..4ffad2d6d 100644
--- a/packages/merchant-backoffice-ui/src/Routing.tsx
+++ b/packages/merchant-backoffice-ui/src/Routing.tsx
@@ -485,28 +485,22 @@ export function Routing(_p: Props): VNode {
<Route
path={InstancePaths.token_family_list}
component={TokenFamilyListPage}
- // onUnauthorized={LoginPageAccessDenied}
- // onLoadError={ServerErrorRedirectTo(InstancePaths.settings)}
onCreate={() => {
route(InstancePaths.token_family_new);
}}
onSelect={(slug: string) => {
route(InstancePaths.token_family_update.replace(":slug", slug));
}}
- // onNotFound={IfAdminCreateDefaultOr(NotFoundPage)}
/>
<Route
path={InstancePaths.token_family_update}
component={TokenFamilyUpdatePage}
- // onUnauthorized={LoginPageAccessDenied}
- // onLoadError={ServerErrorRedirectTo(InstancePaths.token_family_list)}
onConfirm={() => {
route(InstancePaths.token_family_list);
}}
onBack={() => {
route(InstancePaths.token_family_list);
}}
- // onNotFound={IfAdminCreateDefaultOr(NotFoundPage)}
/>
<Route
path={InstancePaths.token_family_new}