jbilcke-hf HF staff commited on
Commit
bdf4bcf
1 Parent(s): 6215321

let's disable account login for now

Browse files
src/components/interface/mobile-bottom-menu/index.tsx CHANGED
@@ -33,6 +33,7 @@ export function MobileBottomMenu() {
33
  Discover
34
  </MenuItem>
35
  </Link>
 
36
  <Link href="/channels">
37
  <MenuItem
38
  icon={<GrChannel className="h-5 w-5" />}
@@ -41,6 +42,10 @@ export function MobileBottomMenu() {
41
  Channels
42
  </MenuItem>
43
  </Link>
 
 
 
 
44
  <Link href="/account">
45
  <MenuItem
46
  icon={<CgProfile className="h-6 w-6" />}
@@ -49,6 +54,7 @@ export function MobileBottomMenu() {
49
  Account
50
  </MenuItem>
51
  </Link>
 
52
  </div>
53
  )
54
  }
 
33
  Discover
34
  </MenuItem>
35
  </Link>
36
+
37
  <Link href="/channels">
38
  <MenuItem
39
  icon={<GrChannel className="h-5 w-5" />}
 
42
  Channels
43
  </MenuItem>
44
  </Link>
45
+
46
+ {/*
47
+ currently disabled using AiTube 2 gets out
48
+
49
  <Link href="/account">
50
  <MenuItem
51
  icon={<CgProfile className="h-6 w-6" />}
 
54
  Account
55
  </MenuItem>
56
  </Link>
57
+ */}
58
  </div>
59
  )
60
  }