- {t('SETTINGS_SHELL_VERSION')}: {shell.transport.props.shellVersion}
+ typeof shell.state.version === 'string' &&
+
+ {t('SETTINGS_SHELL_VERSION')}: {shell.state.version}
}
diff --git a/src/routes/Settings/Player/Player.tsx b/src/routes/Settings/Player/Player.tsx
index 213757cc3..f45cf142c 100644
--- a/src/routes/Settings/Player/Player.tsx
+++ b/src/routes/Settings/Player/Player.tsx
@@ -1,16 +1,15 @@
import React, { forwardRef } from 'react';
import { ColorInput, MultiselectMenu, Toggle } from 'stremio/components';
-import { useServices } from 'stremio/services';
+import { usePlatform } from 'stremio/common';
import { Category, Option, Section } from '../components';
import usePlayerOptions from './usePlayerOptions';
-import { usePlatform } from 'stremio/common';
type Props = {
profile: Profile,
};
const Player = forwardRef