From 232155d01f2be13a9159bc9d0178c9e4fd44431d Mon Sep 17 00:00:00 2001 From: Luis Antonio Obis Aparicio Date: Fri, 20 Jun 2025 15:00:04 +0200 Subject: [PATCH] Invalid default value on type --- src/lib/infrastructure/data/auth/auth.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/infrastructure/data/auth/auth.d.ts b/src/lib/infrastructure/data/auth/auth.d.ts index 9190c16bc..78ac2968b 100644 --- a/src/lib/infrastructure/data/auth/auth.d.ts +++ b/src/lib/infrastructure/data/auth/auth.d.ts @@ -19,6 +19,6 @@ export type AuthViewModel = { export type x509AuthRequestHeaders = { 'X-Rucio-VO': string; 'X-Rucio-Allow-Return-Multiple-Accounts': boolean; - 'X-Rucio-AppID': string = 'rucio-webui'; + 'X-Rucio-AppID': string; 'X-Rucio-Account'?: string; };