mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-11 10:31:47 +00:00
fix(in-app-menu): default config
This commit is contained in:
@ -7,7 +7,7 @@ export const defaultInAppMenuConfig: InAppMenuConfig = {
|
|||||||
(
|
(
|
||||||
(
|
(
|
||||||
typeof window !== 'undefined' &&
|
typeof window !== 'undefined' &&
|
||||||
!window.navigator?.userAgent?.includes('mac')
|
!window.navigator?.userAgent?.toLowerCase().includes('mac')
|
||||||
) ||
|
) ||
|
||||||
(
|
(
|
||||||
typeof global !== 'undefined' &&
|
typeof global !== 'undefined' &&
|
||||||
@ -16,7 +16,7 @@ export const defaultInAppMenuConfig: InAppMenuConfig = {
|
|||||||
) && (
|
) && (
|
||||||
(
|
(
|
||||||
typeof window !== 'undefined' &&
|
typeof window !== 'undefined' &&
|
||||||
!window.navigator?.userAgent?.includes('linux')
|
!window.navigator?.userAgent?.toLowerCase().includes('linux')
|
||||||
) ||
|
) ||
|
||||||
(
|
(
|
||||||
typeof global !== 'undefined' &&
|
typeof global !== 'undefined' &&
|
||||||
|
|||||||
Reference in New Issue
Block a user