File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -698,7 +698,7 @@ class ApiMethods {
698
698
}
699
699
700
700
const response = await this . axios . get < TypesGen . ProvisionerDaemon [ ] > (
701
- `/api/v2/organizations/${ organization } /provisionerdaemons?${ params . toString ( ) } ` ,
701
+ `/api/v2/organizations/${ organization } /provisionerdaemons?${ params } ` ,
702
702
) ;
703
703
return response . data ;
704
704
} ;
@@ -793,7 +793,7 @@ class ApiMethods {
793
793
const params = new URLSearchParams ( ) ;
794
794
params . set ( "claimField" , field ) ;
795
795
const response = await this . axios . get < readonly string [ ] > (
796
- `/api/v2/settings/idpsync/field-values?${ params . toString } ` ,
796
+ `/api/v2/settings/idpsync/field-values?${ params } ` ,
797
797
) ;
798
798
return response . data ;
799
799
} ;
@@ -805,7 +805,7 @@ class ApiMethods {
805
805
const params = new URLSearchParams ( ) ;
806
806
params . set ( "claimField" , field ) ;
807
807
const response = await this . axios . get < TypesGen . Response > (
808
- `/api/v2/organizations/${ organization } /settings/idpsync/field-values?${ params . toString ( ) } ` ,
808
+ `/api/v2/organizations/${ organization } /settings/idpsync/field-values?${ params } ` ,
809
809
) ;
810
810
return response . data ;
811
811
} ;
You can’t perform that action at this time.
0 commit comments