Merge branch 'feat/preferred-port-design' of github.com:Start9Labs/start-os into feat/preferred-port-design

This commit is contained in:
Aiden McClelland
2026-02-13 13:39:25 -07:00

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',