Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 34d28fdc authored by Simon Chan's avatar Simon Chan
Browse files

fix(demo): remove non-exist client options

parent 2d2224da
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -45,8 +45,6 @@ export interface ClientSettings {
    turnScreenOff?: boolean;
    decoder?: string;
    ignoreDecoderCodecArgs?: boolean;
    hidMouse?: boolean;
    hidKeyboard?: boolean;
}

export type SettingKeys = keyof (Settings & ClientSettings);
@@ -450,6 +448,5 @@ export const SETTING_DEFINITIONS = computed(() => {
        description: `Some decoders don't support all H.264 profile/levels, so they request the device to encode at their highest-supported codec. However, some super old devices may not support that codec so their encoders will fail to start. Use this option to let device choose the codec to be used.`,
    });


    return result;
});