🐛 Added movie in icon list for currently playing (#1303)

This commit is contained in:
Tagaishi
2023-08-20 18:08:31 +02:00
committed by GitHub
parent daa5ca29f9
commit bc4009bd8b

View File

@@ -3,6 +3,7 @@ import {
Icon,
IconDeviceTv,
IconHeadphones,
IconMovie,
IconQuestionMark,
IconVideo,
} from '@tabler/icons-react';
@@ -23,6 +24,8 @@ export const NowPlayingDisplay = ({ session }: { session: GenericSessionInfo })
return IconHeadphones;
case 'tv':
return IconDeviceTv;
case 'movie':
return IconMovie;
case 'video':
return IconVideo;
default: