This commit is contained in:
2026-05-13 11:26:28 +04:00
parent 14d9642568
commit 5147d05ea2
2 changed files with 2 additions and 1 deletions

View File

@@ -176,7 +176,7 @@ export class CreatePage {
this.stopPolling();
this.qrPolling.set(true);
this.pollHandle = setInterval(() => {
this.http.get<QrStatusResponse>(`${QR_VITANOVA_API}/qr/dynamic/${qrId}`)
this.http.get<QrStatusResponse>(`${QR_VITANOVA_API}/qr/${encodeURIComponent(this.partnerqrID)}/${qrId}/`)
.subscribe({
next: (res) => {
const st = res?.status ?? '';

View File

@@ -3,6 +3,7 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"rootDir": "./src",
"outDir": "./out-tsc/app",
"types": []
},