Skip to content

Commit

Permalink
chore(resets.js): fetch resets.css instead of a deprecated resets.min…
Browse files Browse the repository at this point in the history
….css file
  • Loading branch information
BalbinaK committed Aug 16, 2023
1 parent f8905df commit 04b5d0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/_preflights/resets.js
Expand Up @@ -2,7 +2,7 @@ let reset;
async function getReset() {
if (reset) return reset;
else {
reset = (await fetch('https://assets.finn.no/pkg/@warp-ds/css/v1/resets.min.css')).text();
reset = (await fetch('https://assets.finn.no/pkg/@warp-ds/css/v1/resets.css')).text();
return reset;
}
}
Expand Down

0 comments on commit 04b5d0b

Please sign in to comment.