Skip to content

Commit a64b80e

Browse files
committed
Fixed events endpoint
1 parent 9672a64 commit a64b80e

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/app/core/services/verifier-endpoint.service.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ import {ActiveTransaction} from "@core/models/ActiveTransaction";
1414
import { SessionStorageService } from './session-storage.service';
1515

1616
const SAME_DEVICE_UI_RE_ENTRY_URL = '/get-wallet-code?response_code={RESPONSE_CODE}';
17-
const PRESENTATIONS_ENDPOINT = 'ui/presentations/v2';
17+
const PRESENTATIONS_ENDPOINT = 'ui/presentations';
18+
const PRESENTATIONS_ENDPOINT_V2 = 'ui/presentations/v2';
1819
const VALIDATE_SD_JWT_VC_PRESENTATION_ENDPOINT = 'utilities/validations/sdJwtVc';
1920

2021
@Injectable()
@@ -34,7 +35,7 @@ export class VerifierEndpointService {
3435
if (!this.deviceDetectorService.isDesktop()) {
3536
payload['wallet_response_redirect_uri_template'] = location.origin + SAME_DEVICE_UI_RE_ENTRY_URL;
3637
}
37-
this.httpService.post<InitializedTransaction, string>(PRESENTATIONS_ENDPOINT, payload)
38+
this.httpService.post<InitializedTransaction, string>(PRESENTATIONS_ENDPOINT_V2, payload)
3839
.pipe(
3940
tap((res) => {
4041
let activeTransaction : ActiveTransaction = {

src/app/features/presentation-request-preparation/components/presentation-options/presentation-options.component.scss

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,11 @@
3131
}
3232

3333
.request-options-control {
34-
display: flex;
3534
flex-direction: column;
3635
gap: 8px;
3736
}
3837

39-
@media (max-width: 768px) {
38+
@media (max-width: 576px) {
4039
.request-options-row {
4140
grid-template-columns: 1fr;
4241
}

0 commit comments

Comments
 (0)