Update get-os.ts

This commit is contained in:
Steven Yeh 2024-03-21 10:47:49 -05:00
parent 666c5b56c8
commit 1c27790ef1

View file

@ -84,4 +84,6 @@ export const isMacOSAndNoLongerSupportedByElectron = memoizeOne(
() => __DARWIN__ && systemVersionLessThan('10.15')
)
export const isOSNoLongerSupportedByElectron = isMacOSAndNoLongerSupportedByElectron() || isWindowsAndNoLongerSupportedByElectron()
export const isOSNoLongerSupportedByElectron =
isMacOSAndNoLongerSupportedByElectron() ||
isWindowsAndNoLongerSupportedByElectron()