Skip to content

Commit d5560d0

Browse files
authored
The library overview now shows covers. Was a typo id vs beetsId. (#66)
1 parent 66d185b commit d5560d0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

frontend/src/routes/library/browse/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ function AlbumRecentCard(album: AlbumResponseMinimal) {
201201
<CoverArt
202202
size="small"
203203
type="album"
204-
id={album.id.toString()}
204+
beetsId={album.id}
205205
sx={{
206206
height: "70px",
207207
width: "70px",

frontend/vite.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ export default defineConfig(({ mode }) => {
1616
return {
1717
plugins: [
1818
tsconfigPaths(),
19+
TanStackRouterVite({ autoCodeSplitting: true }),
1920
// React compiler plugin for production builds
2021
isProd
2122
? reactProd({
@@ -26,7 +27,6 @@ export default defineConfig(({ mode }) => {
2627
},
2728
})
2829
: reactDev(),
29-
TanStackRouterVite({ autoCodeSplitting: true }),
3030
svgr(),
3131
],
3232
// not minifying helped when debugging in production mode

0 commit comments

Comments
 (0)