Skip to content

Commit

Permalink
Syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
Groovylein committed Nov 18, 2023
1 parent 36bfd79 commit b8fd417
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/webapp/src/components/Library/lists/albums/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const Albums = ({ musicFilter }) => {
useEffect(() => {
const fetchAlbumList = async () => {
setIsLoading(true);
const { result, error } = await request('albumList')
const { result, error } = await request('albumList');
setIsLoading(false);

if(result) setAlbums(result.reduce(flatByAlbum, []));
Expand Down

0 comments on commit b8fd417

Please sign in to comment.