Point to just the image path to try to resolve the built version of the admin image loading

This commit is contained in:
Gabe Kangas
2021-02-16 10:08:52 -08:00
parent d86acad338
commit e32e8d1bb3
3 changed files with 3 additions and 3 deletions

View File

@@ -42,7 +42,7 @@ export default function SocialDropdown({ iconList, selectedOption, onSelected }:
return (
<Select.Option className="social-option" key={`platform-${key}`} value={key}>
<span className="option-icon">
<img src={`${NEXT_PUBLIC_API_HOST}${icon}`} alt="" className="option-icon" />
<img src={`${icon}`} alt="" className="option-icon" />
</span>
<span className="option-label">{platform}</span>
</Select.Option>