1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-24 20:36:40 +07:00

remove room link from header (for now)

This commit is contained in:
Fedor Katurov 2023-10-26 18:41:02 +06:00
parent 39eb97b777
commit f809ab40b7

View file

@ -27,7 +27,7 @@ export interface HeaderProps {}
const Header: FC<HeaderProps> = observer(() => {
const [isScrolled, setIsScrolled] = useState(false);
const { showModal } = useModal();
const { isUser, user, fetched, isTester } = useAuth();
const { isUser, user, fetched } = useAuth();
const { hasFlowUpdates, hasLabUpdates } = useFlow();
const { borisCommentedAt } = useUpdates();
const { indicatorEnabled } = useNotifications();
@ -86,17 +86,6 @@ const Header: FC<HeaderProps> = observer(() => {
ЛАБ
</Anchor>
{isTester && (
<Anchor
className={classNames(styles.item, styles.lab, {
[styles.has_dot]: hasLabUpdates && !indicatorEnabled,
})}
href={URLS.ROOM}
>
РУМ
</Anchor>
)}
<Anchor
className={classNames(styles.item, styles.boris, {
[styles.has_dot]: hasBorisUpdates && !indicatorEnabled,