Skip to content

Commit

Permalink
Fix path of aura icons
Browse files Browse the repository at this point in the history
  • Loading branch information
Vindexus committed Oct 29, 2023
1 parent a4df628 commit 20d8a22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/AuraIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ type Props = {
}
export function AuraIcon ({aura, className = ''}: Props) {
const filename = aura.name.toString().split(' ').join('-').toLowerCase()
return <span className={'aura-icon inline-block ' + className} style={{backgroundImage: `url(/auras/${filename}.png`}}>
return <span className={'aura-icon inline-block ' + className} style={{backgroundImage: `url(/WatchersEyeSearch/auras/${filename}.png`}}>

</span>
}

0 comments on commit 20d8a22

Please sign in to comment.