Skip to content

Commit

Permalink
trial
Browse files Browse the repository at this point in the history
  • Loading branch information
HadiKhai committed Dec 10, 2024
1 parent 4c98607 commit 61deda4
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ export const PluginsSection: FC = () => {

<Accordion type="single" collapsible className="w-full">
<JustVerified />
<EFP />
<XMTP />
<div className="w-full h-[1px] min-h-[1px] bg-[#CBD5E180]" />
<POAP />
<div className="w-full h-[1px] min-h-[1px] bg-[#CBD5E180]" />
<TalentProtocol />
<div className="w-full h-[1px] min-h-[1px] bg-[#CBD5E180]" />
<XMTP />
<EFP />
</Accordion>
</div>
);
Expand Down
3 changes: 2 additions & 1 deletion packages/@justweb3/ui/src/lib/ui/Sheet/Sheet.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,9 @@
color: var(--justweb3-foreground-color-2);
font-family: var(--justweb3-font-family);
position: absolute;
top: 0;
top: 1rem;
left: 24px;
margin: 0;
}

.sheetDescription {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export const LoadingMessagesList: React.FC<LoadingMessagesListProps> = ({
paddingTop: 20,
minHeight: `calc( ${computeHeight} - 20px )`,
maxHeight: `calc( ${computeHeight} - 20px )`,
boxSizing: 'content-box',
}}
>
{Array.from({ length: 8 }).map((_, index) => (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,7 @@ export const Chat: React.FC<ChatProps> = ({ conversation, onBack }) => {
}}
>
{isCanMessageLoading || isLoading ? (
// {true ? (
<LoadingMessagesList computeHeight={computeHeight} />
) : (
<ChatMessagesList
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,9 @@ const MessageItem: React.FC<MessageItemProps> = ({
event.stopPropagation();
allowUser();
}}
style={{
height: '10px',
}}
>
{conversationInfo?.consent === 'requested' ? 'Allow' : 'Unblock'}
</Button>
Expand All @@ -174,6 +177,9 @@ const MessageItem: React.FC<MessageItemProps> = ({
event.stopPropagation();
ignoreUser();
}}
style={{
height: '10px',
}}
>
Ignore
</Button>
Expand Down

0 comments on commit 61deda4

Please sign in to comment.