Skip to content

Commit

Permalink
fix: icon sprite link
Browse files Browse the repository at this point in the history
  • Loading branch information
rolorogan committed Dec 16, 2020
1 parent b56fbfb commit f7b63aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/www/wmcads-website.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import {
const icons = () => {
// Ajax SVG in, SVGS are referenced in app (Icon component)
const ajax = new XMLHttpRequest();
ajax.open('GET', '$*cdn/img/wmcads-icons.min.svg', true);
ajax.open('GET', '/img/wmcads-icons.min.svg', true);
ajax.send();
ajax.onload = () => {
const div = document.createElement('div');
Expand Down

0 comments on commit f7b63aa

Please sign in to comment.