Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
ildyria committed Oct 16, 2024
1 parent eabce4f commit 2c6bf0d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/js/services/settings-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ const SettingsService = {
return axios.post(`${Constants.API_URL}Settings::setCSS`, { css: cssData });
},
getJs(): Promise<AxiosResponse> {
return axios.get(`${window.assets_url ?? ''}/dist/custom.js`);
return axios.get(`${window.assets_url ?? ""}/dist/custom.js`);
},
getCss(): Promise<AxiosResponse> {
return axios.get(`${window.assets_url ?? ''}/dist/user.css`);
return axios.get(`${window.assets_url ?? ""}/dist/user.css`);
},
};

Expand Down

0 comments on commit 2c6bf0d

Please sign in to comment.