This commit is contained in:
Iliyan Angelov
2025-10-13 01:49:06 +03:00
parent 76c857b4f5
commit 5ad9cbe3a6
97 changed files with 5752 additions and 2376 deletions

View File

@@ -51,7 +51,6 @@ class PolicyServiceAPI {
const data = await response.json();
return data.results || data;
} catch (error) {
console.error('Error fetching policies:', error);
throw error;
}
}
@@ -75,7 +74,6 @@ class PolicyServiceAPI {
const data = await response.json();
return data;
} catch (error) {
console.error(`Error fetching policy ${type}:`, error);
throw error;
}
}
@@ -99,7 +97,6 @@ class PolicyServiceAPI {
const data = await response.json();
return data;
} catch (error) {
console.error(`Error fetching policy ${id}:`, error);
throw error;
}
}