Release 1.4.0: Phase 1 Symbol-Architektur Redesign
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 20m43s
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 20m43s
This commit is contained in:
@@ -6,10 +6,10 @@ import { join } from 'path'
|
||||
|
||||
export async function GET(
|
||||
request: NextRequest,
|
||||
{ params }: { params: { id: string } }
|
||||
{ params }: { params: Promise<{ id: string }> }
|
||||
) {
|
||||
try {
|
||||
const id = params.id
|
||||
const { id } = await params
|
||||
|
||||
// ─── 1. Try TenantSymbol first (Phase 1 architecture) ───
|
||||
const tenantSymbol = await (prisma as any).tenantSymbol.findUnique({
|
||||
|
||||
Reference in New Issue
Block a user