Skip to content

Commit 1d45298

Browse files
committed
Fix relative image url
1 parent b37e299 commit 1d45298

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/crm/src/dataGenerator/companies.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export const generateCompanies = (db: Db): Company[] => {
2828
return {
2929
id,
3030
name: name,
31-
logo: `/logos/${id}.png`,
31+
logo: `./logos/${id}.png`,
3232
sector: random.arrayElement(sectors),
3333
size: random.arrayElement(sizes) as 1 | 10 | 50 | 250 | 500,
3434
linkedIn: `https://www.linkedin.com/company/${name

0 commit comments

Comments
 (0)