This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

chore: format

+36 -6
+8 -1
src/webapp/features/profile/components/profileCard/ProfileCard.stories.tsx
··· 64 64 handle: 'bot.semble', 65 65 avatarUrl: 'https://i.pravatar.cc/150?u=bot', 66 66 description: 'An automated bot that curates content.', 67 - labels: [{ val: 'bot', src: 'did:plc:bot999', uri: 'did:plc:bot999', cts: '2024-01-01T00:00:00.000Z' }], 67 + labels: [ 68 + { 69 + val: 'bot', 70 + src: 'did:plc:bot999', 71 + uri: 'did:plc:bot999', 72 + cts: '2024-01-01T00:00:00.000Z', 73 + }, 74 + ], 68 75 }, 69 76 }, 70 77 };
+6 -1
src/webapp/features/profile/components/profileFollowStats/ProfileFollowStats.stories.tsx
··· 72 72 decorators: [ 73 73 (Story) => ( 74 74 <QueryCacheSeed 75 - profile={{ ...mockProfile, followerCount: 1, followingCount: 0, followedCollectionsCount: 0 }} 75 + profile={{ 76 + ...mockProfile, 77 + followerCount: 1, 78 + followingCount: 0, 79 + followedCollectionsCount: 0, 80 + }} 76 81 > 77 82 <Suspense fallback={<FollowStatsSkeleton />}> 78 83 <Story />
+8 -1
src/webapp/features/profile/components/profileHoverCard/ProfileHoverCard.stories.tsx
··· 78 78 handle: 'bot.semble', 79 79 avatarUrl: 'https://i.pravatar.cc/150?u=bot', 80 80 description: 'An automated bot that curates content.', 81 - labels: [{ val: 'bot', src: 'did:plc:bot999', uri: 'did:plc:bot999', cts: '2024-01-01T00:00:00.000Z' }], 81 + labels: [ 82 + { 83 + val: 'bot', 84 + src: 'did:plc:bot999', 85 + uri: 'did:plc:bot999', 86 + cts: '2024-01-01T00:00:00.000Z', 87 + }, 88 + ], 82 89 }} 83 90 > 84 91 <Suspense>
+14 -3
src/webapp/features/profile/components/profileMenu/ProfileMenu.stories.tsx
··· 45 45 (Story) => ( 46 46 <AuthContext.Provider value={mockAuthContext}> 47 47 <QueryCacheSeed profile={mockProfile}> 48 - <Suspense fallback={<MantineSkeleton w={38} h={38} radius="md" ml={4} />}> 48 + <Suspense 49 + fallback={<MantineSkeleton w={38} h={38} radius="md" ml={4} />} 50 + > 49 51 <div style={{ maxWidth: 280 }}> 50 52 <Story /> 51 53 </div> ··· 75 77 name: 'Semble Bot', 76 78 handle: 'bot.semble', 77 79 avatarUrl: 'https://i.pravatar.cc/150?u=bot', 78 - labels: [{ val: 'bot', src: 'did:plc:bot999', uri: 'did:plc:bot999', cts: '2024-01-01T00:00:00.000Z' }], 80 + labels: [ 81 + { 82 + val: 'bot', 83 + src: 'did:plc:bot999', 84 + uri: 'did:plc:bot999', 85 + cts: '2024-01-01T00:00:00.000Z', 86 + }, 87 + ], 79 88 }} 80 89 > 81 - <Suspense fallback={<MantineSkeleton w={38} h={38} radius="md" ml={4} />}> 90 + <Suspense 91 + fallback={<MantineSkeleton w={38} h={38} radius="md" ml={4} />} 92 + > 82 93 <div style={{ maxWidth: 280 }}> 83 94 <Story /> 84 95 </div>