Remove unused utils

This commit is contained in:
jeffvli
2022-10-18 18:52:40 -07:00
parent 9424203960
commit 3e80f71833
2 changed files with 0 additions and 21 deletions
-19
View File
@@ -1,19 +0,0 @@
export const getImageUrl = (
serverType: string,
baseUrl: string,
imageId: string,
token?: string
) => {
if (serverType === 'jellyfin') {
return (
`${baseUrl}/Items` +
`/${imageId}` +
`/Images/Primary` +
'?fillHeight=200' +
`&fillWidth=200` +
'&quality=90'
);
}
return '';
};
-2
View File
@@ -8,6 +8,4 @@ export * from './folder-permissions';
export * from './is-array-equal';
export * from './is-json-string';
export * from './unique-array';
export * from './zod-validation';
export * from './get-image-url';
export * from './random-string';