Skip to content

Commit

Permalink
prettier-fix
Browse files Browse the repository at this point in the history
Signed-off-by: hanbollar <[email protected]>
  • Loading branch information
hanbollar committed May 16, 2024
1 parent d0aca3b commit df3843a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/utils/HTML.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ html.resolvePath = function (path, baseUrl = window.location.origin) {

// Handle multiple paths separated by commas
if (path.includes(',')) {
return path.split(',').map(p => fixPath(p.trim())).join(',');
return path
.split(',')
.map((p) => fixPath(p.trim()))
.join(',');
}

// singular path
Expand Down

0 comments on commit df3843a

Please sign in to comment.