Skip to content

Commit 4765cde

Browse files
committed
feat: refactor thread list item skeleton as well
1 parent d39db7c commit 4765cde

File tree

3 files changed

+132
-256
lines changed

3 files changed

+132
-256
lines changed

package/src/components/ChannelList/Skeleton.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,13 @@ export const Skeleton = () => {
5050

5151
const {
5252
theme: {
53-
channelListSkeleton: { container, height = 80 },
53+
channelListSkeleton: { container },
5454
},
5555
} = useTheme();
5656

5757
return (
5858
<View style={[styles.container, container]} testID='channel-preview-skeleton'>
59-
<View style={[styles.content, { height }]}>
59+
<View style={styles.content}>
6060
<SkeletonAvatar />
6161
<SkeletonContent />
6262
</View>
@@ -121,5 +121,5 @@ const useStyles = () => {
121121
overflow: 'hidden',
122122
},
123123
});
124-
}, [semantics.borderCoreDefault]);
124+
}, [semantics.borderCoreSubtle]);
125125
};

0 commit comments

Comments
 (0)