Skip to content

Commit

Permalink
fix(log): src/Provider/Fetcher.js
Browse files Browse the repository at this point in the history
Co-authored-by: Raphaël Duhen <[email protected]>
  • Loading branch information
jailln and HoloTheDrunk authored Dec 9, 2024
1 parent efa8152 commit 42b5eb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Provider/Fetcher.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export default {
});

textureLoader.load(url, res, () => {}, (event) => {
const error = new Error(`Failed to load texture from URL: ${url}`);
const error = new Error(`Failed to load texture from URL: `${url}``);
error.originalEvent = event;
rej(error);
});
Expand Down

0 comments on commit 42b5eb1

Please sign in to comment.