This repository has no description
0

Configure Feed

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

fix: missing client directive on bsky embeds

+12
+2
src/webapp/features/cards/components/urlCardContent/UrlCardContent.tsx
··· 1 + 'use client'; 2 + 1 3 import { detectUrlPlatform, SupportedPlatform } from '@/lib/utils/link'; 2 4 import { UrlCard } from '@semble/types'; 3 5 import SembleCollectionCardContent from './SembleCollectionCardContent';
+2
src/webapp/features/platforms/bluesky/components/externalEmbed/ExternalEmbed.tsx
··· 1 + 'use client'; 2 + 1 3 import { useUserSettings } from '@/features/settings/lib/queries/useUserSettings'; 2 4 import { getDomain } from '@/lib/utils/link'; 3 5 import { AppBskyEmbedExternal } from '@atproto/api';
+2
src/webapp/features/platforms/bluesky/components/feedEmbed/FeedEmbed.tsx
··· 1 + 'use client'; 2 + 1 3 import { AppBskyFeedDefs } from '@atproto/api'; 2 4 import { Avatar, Card, Group, Stack, Text } from '@mantine/core'; 3 5
+2
src/webapp/features/platforms/bluesky/components/listEmbed/ListEmbed.tsx
··· 1 + 'use client'; 2 + 1 3 import { AppBskyGraphDefs } from '@atproto/api'; 2 4 import { BsFillPeopleFill } from 'react-icons/bs'; 3 5 import { Card, Group, Text } from '@mantine/core';
+2
src/webapp/features/platforms/bluesky/components/recordEmbed/RecordEmbed.tsx
··· 1 + 'use client'; 2 + 1 3 import RichTextRenderer from '@/components/contentDisplay/richTextRenderer/RichTextRenderer'; 2 4 import { 3 5 AppBskyEmbedRecord,
+2
src/webapp/features/platforms/bluesky/components/starterPackEmbed/StarterPackEmbed.tsx
··· 1 + 'use client'; 2 + 1 3 import { AppBskyGraphDefs, AppBskyGraphStarterpack } from '@atproto/api'; 2 4 import { 3 5 AspectRatio,