clean up dependencies

This commit is contained in:
jeffvli 2025-05-22 03:42:25 -07:00
parent e10a92a5c2
commit 1808f160b4
6 changed files with 224 additions and 26583 deletions

View file

@ -42,7 +42,6 @@ interface RemoteConfig {
declare class StatefulWebSocket extends WebSocket {
alive: boolean;
auth: boolean;
}

View file

@ -90,7 +90,13 @@ const installExtensions = async () => {
extensions.map((name) => installer[name]),
forceDownload,
)
.catch(console.log);
.then((installedExtensions) => {
createLog({
message: `Installed extension: ${installedExtensions}`,
type: 'info',
});
})
.catch(console.error);
});
};

View file

@ -14,7 +14,7 @@ import { useFullScreenPlayerStore, usePlayerData, usePlayerStore } from '/@/rend
import { useSettingsStore } from '/@/renderer/store/settings.store';
import { PlayerData, QueueSong } from '/@/shared/types/domain-types';
const Image = styled(motion.img)<{ $useAspectRatio: boolean }>`
const Image = styled(motion.img)<any>`
position: absolute;
max-width: 100%;
height: 100%;