(feat): improved conversation adding flow
(feat): visual tweaks for user modal (feat): now using full width for profile settings page on mobile (fix): profile not saving with empty avatar (chore): bump version due to prod release not getting created (chore): update licenses
This commit is contained in:
parent
4380d664be
commit
ba59a49f98
14 changed files with 203 additions and 44 deletions
|
|
@ -76,6 +76,16 @@ export default function List() {
|
|||
</div>
|
||||
);
|
||||
})}
|
||||
<p
|
||||
className="text-center text-sm px-2 text-muted-foreground transition-all duration-200 ease-in-out"
|
||||
hidden={contacts.length !== 0 || category !== "conversations"}
|
||||
style={{
|
||||
opacity:
|
||||
contacts.length === 0 && category === "conversations" ? 1 : 0,
|
||||
}}
|
||||
>
|
||||
Get started by adding a conversation
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in a new issue