Skip to content

Commit

Permalink
remove unnecessary export
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanVukovic99 committed Feb 3, 2024
1 parent 5acad61 commit c3b594d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/js/core/fetch-utilities.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import {readResponseJson} from './json.js';
* @param {string} url
* @returns {Promise<Response>}
*/
export async function fetchAsset(url) {
async function fetchAsset(url) {
const response = await fetch(chrome.runtime.getURL(url), {
method: 'GET',
mode: 'no-cors',
Expand Down

0 comments on commit c3b594d

Please sign in to comment.