Added enter animation, added loading and error state to conversations and communities, updated other small stuff
This commit is contained in:
parent
396defef64
commit
ed53c17597
10 changed files with 116 additions and 53 deletions
|
|
@ -21,7 +21,7 @@ export default function Navbar() {
|
|||
const { pathname } = useLocation();
|
||||
const { id } = useSearch({ strict: false });
|
||||
|
||||
const currentCalls = id ? conversations[id]?.calls || [] : [];
|
||||
const currentCalls = id ? conversations?.[id]?.calls || [] : [];
|
||||
|
||||
return (
|
||||
<div className="w-full h-13.5 flex items-center justify-center">
|
||||
|
|
|
|||
Loading…
Reference in a new issue