chore: fix ui

This commit is contained in:
Vishnu Narayanan
2024-01-25 18:33:55 +05:30
parent d2f5b5f976
commit edd0d58c39
9 changed files with 189 additions and 166 deletions
+1 -6
View File
@@ -1,4 +1,4 @@
/* global axios */
// /* global axios */
import ApiClient from './ApiClient';
@@ -6,11 +6,6 @@ class SlaAPI extends ApiClient {
constructor() {
super('sla_policies', { accountScoped: true });
}
get({ page }) {
const url = page ? `${this.url}?page=${page}` : this.url;
return axios.get(url);
}
}
export default new SlaAPI();