add discount

This commit is contained in:
2025-12-24 01:40:07 -03:00
parent 1a59ad9e91
commit 2459bafc5d
16 changed files with 423 additions and 132 deletions

View File

@@ -3,6 +3,5 @@ import type { Route } from './+types/route'
import { redirect } from 'react-router'
export async function loader({ params }: Route.LoaderArgs) {
const { orgid } = params
throw redirect(`/${orgid}/main`)
throw redirect(`/${params.orgid}/main`)
}