Skip to content

Commit

Permalink
fixed review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
mishramonalisha76 committed Sep 20, 2024
1 parent 20e191c commit eab317f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
3 changes: 2 additions & 1 deletion src/modules/channelDetails/components/ChannelDetail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const ChannelDetail: FC<ChannelDetailProps> = ({ channel, isLoading }) => {
display="flex"
flexDirection="column"
width="100%"
height="100vh"
height="100%"
gap="spacing-xl"
padding="spacing-none spacing-xxs"
>
Expand Down Expand Up @@ -264,6 +264,7 @@ const ChannelDetail: FC<ChannelDetailProps> = ({ channel, isLoading }) => {
<ChannelDetailSubscribe channel={channel} />
</Box>
</Box>

<RecentNotifications channelAddress={channel?.channel} />
</Box>
);
Expand Down
6 changes: 2 additions & 4 deletions src/modules/channelDetails/components/RecentNotifications.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,7 @@ const RecentNotifications: FC<RecentNotificationsProps> = ({ channelAddress }) =
display="flex"
flexDirection="column"
width="100%"
// height="70%"
// padding="spacing-none spacing-none spacing-xxxl spacing-none"
overflow="auto"
height="100%"
>
<Text
color="text-primary"
Expand All @@ -40,7 +38,7 @@ const RecentNotifications: FC<RecentNotificationsProps> = ({ channelAddress }) =
flexDirection="column"
gap="spacing-sm"
padding="spacing-sm spacing-none spacing-none spacing-none"
overflow="auto"
overflow="scroll"
justifyContent="flex-start"
customScrollbar={true}
>
Expand Down

0 comments on commit eab317f

Please sign in to comment.