fix license display in marketplace

This commit is contained in:
Matt Hill
2026-02-12 13:07:19 -07:00
parent 339e5f799a
commit 4decf9335c

View File

@@ -49,7 +49,7 @@ export class LiveApiService extends ApiService {
urls: string[],
params: Record<string, string | number>,
): Promise<string> {
for (let url in urls) {
for (const url of urls) {
try {
const res = await this.httpRequest<string>({
method: 'GET',