Skip to content

Commit ea56a58

Browse files
committed
hotfix: remove nbs-player-rs files
1 parent 2e08fb8 commit ea56a58

File tree

3 files changed

+1
-6
lines changed

3 files changed

+1
-6
lines changed

web/public/nbs-player-rs.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

web/public/nbs_player_rs.wasm

-1.71 MB
Binary file not shown.

web/src/modules/song/components/SongPage.tsx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import { SongPreviewDto } from '@shared/validation/song/dto/SongPreview.dto';
22
import { SongViewDtoType } from '@shared/validation/song/dto/types';
3+
import Image from 'next/image';
34

45
import axios from '@web/src/lib/axios';
56

67
import { LicenseInfo } from './client/LicenseInfo';
7-
import { SongCanvas } from './client/SongCanvas';
88
import { SongDetails } from './SongDetails';
99
import {
1010
DownloadSongButton,
@@ -49,7 +49,6 @@ export async function SongPage({ id }: { id: string }) {
4949
<div className='col-span-full lg:col-span-5 flex flex-col gap-4'>
5050
{/* Song thumbnail */}
5151
{/* TODO: implement loading https://github.com/vercel/next.js/discussions/50617 */}
52-
{/*
5352
<picture className='bg-zinc-800 aspect-[5/3] rounded-xl'>
5453
<Image
5554
width={1280}
@@ -59,9 +58,6 @@ export async function SongPage({ id }: { id: string }) {
5958
className='w-full h-full rounded-xl'
6059
/>
6160
</picture>
62-
*/}
63-
64-
<SongCanvas song={song} />
6561

6662
<h1 className='text-xl font-bold'>{song.title}</h1>
6763

0 commit comments

Comments
 (0)