Skip to content

Commit

Permalink
fix: restore stream context from url (#192)
Browse files Browse the repository at this point in the history
fixes #190
  • Loading branch information
balaji-jr authored Jan 29, 2024
1 parent aed1387 commit e4d31c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Navbar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ const Navbar: FC<NavbarProps> = (props) => {
const userStreams = getUserSepcificStreams(getUserRolesData?.data, getLogStreamListData?.data as any);
setUserSepecficStreams(userStreams as any);
} else {
setUserSepecficStreams([]);
setUserSepecficStreams(null);
setUserSepecficAccess(getStreamsSepcificAccess(getUserRolesData?.data));
}
}, [getUserRolesData?.data, getLogStreamListData?.data]);
Expand Down

0 comments on commit e4d31c8

Please sign in to comment.