Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion frontend/src/routes/library/browse/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ function AlbumRecentCard(album: AlbumResponseMinimal) {
<CoverArt
size="small"
type="album"
id={album.id.toString()}
beetsId={album.id}
sx={{
height: "70px",
width: "70px",
Expand Down
2 changes: 1 addition & 1 deletion frontend/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export default defineConfig(({ mode }) => {
return {
plugins: [
tsconfigPaths(),
TanStackRouterVite({ autoCodeSplitting: true }),
// React compiler plugin for production builds
isProd
? reactProd({
Expand All @@ -26,7 +27,6 @@ export default defineConfig(({ mode }) => {
},
})
: reactDev(),
TanStackRouterVite({ autoCodeSplitting: true }),
svgr(),
],
// not minifying helped when debugging in production mode
Expand Down
Loading