remove "preview" disclaimer from macOS

This commit is contained in:
undergroundwires
2021-03-01 17:01:34 +01:00
parent 15004ff1f1
commit 970221b996

View File

@@ -45,7 +45,7 @@ export default class TheOsChanger extends StatefulVue {
function renderOsName(os: OperatingSystem): string {
switch (os) {
case OperatingSystem.Windows: return 'Windows';
case OperatingSystem.macOS: return 'macOS (preview)';
case OperatingSystem.macOS: return 'macOS';
default: throw new RangeError(`Cannot render os name: ${OperatingSystem[os]}`);
}
}