Skip to content

Commit 09bf762

Browse files
committed
Fix missing profile5.jpg error by adding new images and swapping pfp.jpg to position 12
1 parent d0ae6d0 commit 09bf762

6 files changed

Lines changed: 9 additions & 3 deletions
1.83 MB
Loading

src/assets/images/media-upload.jpg

287 KB
Loading
4.75 MB
Loading

src/assets/images/pfp.jpg

2.63 MB
Loading

src/assets/images/profile5.jpg

-171 KB
Binary file not shown.

src/hooks/usePaidSubscribers.ts

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@ import profile1 from '@app/assets/images/profile1.png';
99
import profile2 from '@app/assets/images/profile2.jpg';
1010
import profile3 from '@app/assets/images/profile3.webp';
1111
import profile4 from '@app/assets/images/profile4.webp';
12-
import profile5 from '@app/assets/images/profile5.jpg';
12+
import pfp from '@app/assets/images/pfp.jpg';
13+
import mediaUpload from '@app/assets/images/media-upload.jpg';
14+
import oilPaintGandalf from '@app/assets/images/OilPaintGandalf.png';
15+
import nostrGif from '@app/assets/images/nostr.build_0f74feb77e9d4e23b60f00188a02873ad0c2d15a176260817c1c96c6f88d2fa3.gif';
1316
import profile6 from '@app/assets/images/profile6.jpg';
1417
import profile7 from '@app/assets/images/profile7.jpg';
1518
import profile8 from '@app/assets/images/profile8.gif';
@@ -39,10 +42,13 @@ const dummyProfiles: SubscriberProfile[] = [
3942
{ pubkey: 'dummy-6', picture: profile13, name: 'Demo User 6', about: 'Demo subscriber' },
4043
{ pubkey: 'dummy-7', picture: profile8, name: 'Demo User 7', about: 'Demo subscriber' },
4144
{ pubkey: 'dummy-8', picture: profile12, name: 'Demo User 8', about: 'Demo subscriber' },
42-
{ pubkey: 'dummy-9', picture: profile5, name: 'Demo User 9', about: 'Demo subscriber' },
45+
{ pubkey: 'dummy-9', picture: profile11, name: 'Demo User 9', about: 'Demo subscriber' },
4346
{ pubkey: 'dummy-10', picture: profile4, name: 'Demo User 10', about: 'Demo subscriber' },
4447
{ pubkey: 'dummy-11', picture: profile9, name: 'Demo User 11', about: 'Demo subscriber' },
45-
{ pubkey: 'dummy-12', picture: profile11, name: 'Demo User 12', about: 'Demo subscriber' },
48+
{ pubkey: 'dummy-12', picture: pfp, name: 'Demo User 12', about: 'Demo subscriber' },
49+
{ pubkey: 'dummy-13', picture: mediaUpload, name: 'Demo User 13', about: 'Demo subscriber' },
50+
{ pubkey: 'dummy-14', picture: oilPaintGandalf, name: 'Demo User 14', about: 'Demo subscriber' },
51+
{ pubkey: 'dummy-15', picture: nostrGif, name: 'Demo User 15', about: 'Demo subscriber' },
4652
];
4753

4854
// Simple cache for subscriber list pagination (not profiles - those are cached in profileCache)

0 commit comments

Comments
 (0)